Skip to main content

Option to Hide Privacy Settings on Spaces

Under the "About" section on each space, the privacy settings (such as "Public") are visible to users, along with the privacy setting description. This might not be necessary to display for users, and in some cases, it could be unnecessary to show at all. It would be useful to add an option to hide the privacy settings description for users, so they don't see this information unless it's needed.

Option to Hide Privacy Settings on Spaces

Ross FCA

You can remove that with css. Simple function here:

add_action('fluent_community/portal_header', function() {
echo '
#fluent_com_portal .space_meta {
display: none !important;
} ';
});

Chris

Ross HΒ Perfect! Thank you!

Sophia S

Ross HΒ that didn't work for me, had to modify it into this to work

function fluent_community_hide_space_meta()
echo '

#fluent_com_portal .space_meta {

display: none !important;

}

';

}

add_action('fluent_community/portal_header', 'fluent_community_hide_space_meta');

Sombri Luna

Ross H I don't understand how they use css code for the portal if it is supposed to be a single page app. Where do they enter the code?

Mat β€Ž

Sombri LunaΒ you can enter the code snippet for example in Fluent Snippet plugin and the magic will happen for your own custom CSS etc

Fluent Community plugin has its own layout (styles like: colors are not taken from your Theme - if you want to use your custom CSS you can use code snippet from here - maybe it will be nativly implemented in Fluent Community settings later on - will see.

If you dont have a Code Snippet plugin for changing Slug and/or CSS code snippet then use Fluent Snippets plugin for Free - here is how to use the Fluent Snippets plugin by @dcmcca David McCan).

Ceez Vision

What's the CSS to hide the entie left hand sidebar?

Sophia S

Curtis MarshallΒ there is a setting to disable this please

Ceez Vision

No setting for it. I just had to create a script to do so.