Changing Feed to Home Does Not Update the Sidebar
I would like to update this to Home. I changed it in the main menu, but the sidebar does not update.
Go to your portal settings in FC, click the "Menu Settings", you will see "feed" on Primary Menu Items, click edit and save. That's all
wilson eberechi That what I said I already tried. It only changes the main menu.
I use the following code to change it to Home.
add_filter('gettext', 'join_translate_text', 10, 3);
function join_translate_text( $translated_text, $untranslated_text, $domain ) {
if ( 'fluent-community' !== $domain ) {
return $translated_text;
}
if ( 'Feed' == $translated_text ) {
return 'Home';
}
return $translated_text;
}Thomas Oates thanks for sharing. It did not work for me. I have code in Custom CSS already and may be casuing issues.
Sean Custom CSS wouldn't impact the code above. Did you try adding that code using FluentSnippets or similar plugin or by adding to your theme's functions.php file (that is where I have it).
Thomas Oates No. I was using FC built in Custom CSS. I need to bite the bullet and get a Snippet plugin. I try to limit them unless I really need something. Thanks for the help. I hope they update this in the future, as it should match the menu.
Sean Agreed, it would be nice if the menu setting was used everywhere.
Why not just disable that Feed button from the menu? And add your own from menu settings? I wanted a different icon so that's what I've done.
Sean It's not a bug, they are different links with the same name. The sidebar feed button is created by that customization setting and specifically points to the main feed page with that icon and the title Feed. If you want that link to go somewhere other than your main feed, have a different icon, or different title you'll need to disable that option and add your own link.