Skip to main content

Hi! I love Fluent Community but it would be great to have the option to upload videos not only embedding them.

I have installed FluentPlayer but only lets you upload one video in each post. Also it would be great to have the option to upload videos and photos at the same time. Now it’s only possible to upload video and embed photos using the / menu.

With this option creat posts with photos and videos would be easier.

Thanks and keep the good work!

πŸš€ We're exploring our next product for the FluentCommunity ecosystem, and we'd love your feedback.

At IndraSys, we're considering a new Creator Mode plugin designed for communities that want a YouTube Shorts–style experience inside FluentCommunity.

The initial vision includes:

πŸŽ₯ Vertical Shorts Feed
πŸ“± Full-Screen Swipe Experience
❀️ Like & Comment
πŸ‘οΈ Video View Counter
πŸ’° Creator Wallet
πŸ“Š View-Based Earnings (Admin Controlled)
βš™οΈ Admin Controls for Creator Monetization

The goal is to help community owners build a creator economy inside their own communityβ€”not on external social platforms.

We're currently in the planning stage, so we'd love to hear your thoughts.

Would this be valuable for your community? What features would you like to see in the first release?

β€” Team IndraSys 🌐 https://indrasys.com

Hi everyone,

Has anyone here tried FC Addons with FluentCommunity, especially the PWA and Push Notifications add-ons?

I’m considering buying the Lifetime package for my community and would really appreciate feedback from real users:

  • Are the add-ons stable, or do they cause any issues or slow down the website?
  • How is the PWA experience on iPhone and Android?
  • Do push notifications work reliably?
  • Is their support helpful when there is a problem?
  • Do you think the Lifetime deal is worth the price?

I’d really appreciate any honest experience or advice before purchasing. Thank you! πŸ™

I found that the lessons would not unlock in order...

Bug Location:Β FluentCommunityPro\App\Hooks\Handlers\SequentialLessonLockHandler::getOrderedLessonIds()

Problem:Β The query fetching all course lessons only orders byΒ priorityΒ (->orderBy('priority', 'ASC')). Because lessons across different sections share the same default priority (e.g.,Β 0), the database sort is unstable and returns lessons in an arbitrary order, mismatching the frontend display order.

Fix:Β Add a secondary sort by ID to the query so it matches the frontend:

php

$rows = CourseLesson::where('space_id', $courseId)

->where('status', 'published')

->orderBy('priority', 'ASC')

->orderBy('id', 'ASC') // <--- Add this line

->get(['id', 'parent_id']);

There are so many scroll lines on the desktop view, as you can see in the image with the blue sign.

Also, there's a blank space at the top, which I painted with red ink in the attached image.

I'm using the WP 2025 theme, with Fluent Community Frame. Those lines appear on pages with longer content

Could you please get rid of it?

Double-scrolling lines on the desktop Double-scrolling lines on the desktop

Although I noticed a shift in social media a couple of years back already; these last months have clearly been an eye-opener for me.

But clearly, social media is slowly shifting into a wall of ads, and groups on social media are losing their identity by being too picky on what and where people can post something.

Smaller communities are the future to my opinion and if you ever considered having a community, Fluent Community is one of the way to go!

This was supposed to launch in April and nothing has been posted about this video player since then. Anyone have any alternative solutions that can play audio files (mp3) in my Community posts?

Is it possible to separate Space posts from the main feed? Or remove the Administrator's posts from the main feed?

I noticed that YouTube videos embedded via FluentPlayer were automatically opening in fullscreen mode on mobile & desktop devices.

After investigating, I found that the player was rendering YouTube embeds with:

playsinline=0

As a temporary fix, I edited player.php and forced the playsinline attribute to always be present:

echo 'playsinline';

After making this change, YouTube videos started playing inline correctly instead of opening in fullscreen.

Has anyone else experienced this issue? It might be worth checking whether playsInline is being passed correctly to the Vidstack/YouTube provider.