How to Presto Player on Fluent Community (Video Course and Post)
Integrate Presto Player into Your FluentCommunity Course β Smooth Playback, No Ads!
Looking to embed YouTube videos into your course without the distraction of ads or cluttered interfaces?
Iβve just finished a step-by-step guide on how to combine Presto Player with FluentCommunity β it's simple, effective, and requires no complex coding! π
π Check out the full step-by-step guide here
Huge thanks to Cuong Thach for the support throughout the process.
Hope this helps those building a more professional learning platform!
PS: But anyway Fluent Player Plugin (Native Video) is the missing piece to make everything more seamless and professional. Hope they release it soon.
Note: If you like and want to vote for the Presto Play feature, click "Add Presto Player videos to course lessons in FluentCommunity"
Hoang HxnΒ could you share how you did that? Thanks
I just looked this up and couldn't watch their demo video because it didn't loadπ«€
I had problems with Presto Player and eventually stopped using it. Do you find it reliable?
William BeemΒ It works perfect for me.
William BeemΒ I usually use Youtube videos but using Presto Player helps my viewers stay focused while watching, Consistent with my branding
Amazing, this is what was blocking me to use FC. Could you share how you did that?
Kristina BellaΒ This tutorial will be released on 05/05/2025. Just note that make it useful not Toxic (I have no obligation to write if I don't want to) π
Hoang HxnΒ not sure I understand what you meant here
how did u do that
Yesssss!!! Would love to hear how you did that π π
Okay then let us know now please
Hoang HxnΒ You guy are so shit, you delete comments here where users are mad about you. Now you say release on May, before 05/05/2025 and promite it since 5-6months. I know you like to try to promote your shit community - for sure we will write bad Trustpilot reviews for your community if I see someday your community link in one of your posts or comments in FluentCommunity ;)
Kristina BellaΒ All of this bitterness because they made a decision not to rely on another vendor's product? That isn't a flaw with FluentCommunity. That's a product decision. Plain and simple. Just like you don't use Ford parts in a Toyota car.
William BeemΒ I didnt mean FluentCommunity, Brainstorm or any developer, I mean with that comment only Hoang HxnΒ ;)
Kristina BellaΒ Johanna ArmniusΒ Kevin HeinrichsΒ Nang HaΒ
Iβve finally finished the detailed tutorial!
πSorry to keep you waiting β I truly appreciate your patience.
I hope this guide will be helpful for you all!
Hoang HxnΒ wow, thank you so much for this!!
Johanna ArmniusΒ Let me know if you have any problems integrating with Presto Player π
Thank you. This was very useful.
Note for others, if you do still want your admin/menu bar to show up on other pages, don't forget to add a conditional logic for media hub post type
Wendy ShoefΒ Thanks for your feedback π this is useful for advanced users but still need to adjust CSS a bit. For beginners, the way I guide will be simpler, less manipulation.
Hoang HxnΒ do you have solution to Presto Audio? ;)
Michal PaczulaΒ Yes, You can do exactly the same with Video, Most importantly in Step 2 > Section 5 "In the admin toolbar, click on Instant Video Page > Visibility > Select Published" so you have the Page Link embedded in the course or post π
This one works with our Bunny.net Presto integration Hoang HxnΒ but I'd need to tweak the Ui since the bottom bar is cut off. Any tips on how to use the Presto UI and make it nice (I am just not a coder....)
Awesome, this is perfect since we actually embedded Loom videos instead, which needs to be public yet can't be found if you don't have the link.
Hoang HxnΒ any ideas on how to remove the top headline and fix the cut off when using Presto with the Bunny.net connection?
Jacob MarinkoΒ Maybe Cuong ThachΒ can help you with this, He is the Bunny expert π
Hoang HxnΒ thanks! I think it is simply the padding in the custom html. I can tweak that with my minimal coding skills and AI.
Jacob MarinkoΒ If use Bunny, I recommend use Bunny Stream, don't use Bunny storage on Presto. Bunny Stream is dirty cheap cost from $1/month with volume tier compare to Vimeo or others.
Presto use Bunny storage, it will eat your budget hard. Bunny Stream can be used without Presto Player plugin, use iframe instead.

Cuong ThachΒ Yes, that is what we are doing. Using stream. thanks for the heads up anyways!
This worked better for me:
function custom_clean_view_for_presto_embed() {
if ( is_singular('pp_video_block') ) {
?>
document.addEventListener('DOMContentLoaded', function() {
const prestoPlayer = document.querySelector('presto-player');
if (prestoPlayer) {
document.body.innerHTML = '';
document.body.appendChild(prestoPlayer);
document.body.style.margin = '0';
document.body.style.padding = '0';
document.body.style.background = 'transparent';
document.documentElement.style.marginTop = '0';
const figure = document.querySelector('figure');
if (figure && figure.contains(prestoPlayer)) {
document.body.innerHTML = '';
document.body.appendChild(prestoPlayer);
}
}
});
</script>
<?php
}
}
add_action('wp_head', 'custom_clean_view_for_presto_embed');
Madis MarkΒ Oooh gonna try this one out. I struggled with the other one quite a bit. Do you know if this one works for vertical videos?
