Skip to main content

Feature request – Fluent Community Elementor Frame for Single Posts

Hi Fluent team πŸ‘‹

I’m currently building a Fluent Community site where the community is the main entry point and all private content lives inside it.

Right now, the Fluent Community Elementor frame works perfectly for WordPress Pages, but it’s not available when creating Single Post templates (blog posts) in Elementor Pro.

This creates a limitation for use cases where:

Blog posts are used as member-only content

Access is already controlled via roles/snippets

Fluent Community acts as the navigation and interaction layer

Posts are meant to be read inside the community context, not as standalone public content

It would be extremely valuable if the Fluent Community layout/frame could also be enabled for Single Posts, the same way it is for Pages.

This would unlock:

Cleaner architectures for private knowledge bases

Better separation between public pages and member content

More flexible content strategies without forcing everything into Pages

Just wanted to share this use case β€” it feels like a natural extension of Fluent Community’s philosophy.

Thanks for the great work so far πŸ™Œ

Thomas Oates

This code should allow it to use the FC page template for blog posts.

// load fluent community frame only for single blog post
add_filter('fluent_community/template_slug', function ($templateSlug) {
    if(is_singular(['post'])) {
        return 'fluent-community-frame.php';
    }
    return $templateSlug;
});

Ethan B

Thomas OatesΒ Thank you it does the trick !

Artur Abakarov

Thomas OatesΒ wow) is there one for the 404 page? I have the cadence theme (free)

John Waters

Thomas OatesΒ Is there a trick to this ? (I tried, but failed, new ground for me), Using EPro and WPCode . The page layout is showing in normal pages, just not the theme builder.

Thomas Oates

Artur AbakarovΒ Unfortunately, I'm not sure. I'm using a custom theme which has a custom 404.php page.

Thomas Oates

John WatersΒ Unfortunately, I'm also not sure about this. I don't use any page builders.

Ethan B

I used fluent snippet created a snippet to force it with the code Thomas gave me.