Skip to content

Instantly share code, notes, and snippets.

@annuman97
Created June 20, 2025 05:30
Show Gist options
  • Save annuman97/59c5736370eb06ead38dc9a339d981b7 to your computer and use it in GitHub Desktop.
Save annuman97/59c5736370eb06ead38dc9a339d981b7 to your computer and use it in GitHub Desktop.
Hide Left bottom icons in Fluent Community
add_action('init', function () {
if (current_user_can('manage_options')) {
remove_all_actions('fluent_community/after_portal_sidebar');
//add your own custom content there
add_action('fluent_community/after_portal_sidebar', function () {
echo '<div class="fcom_side_footer"></div>'; // empty footer
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment