Skip to main content

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.

Changing Feed to Home Does Not Update the Sidebar

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

Sean

wilson eberechi That what I said I already tried. It only changes the main menu.

Thomas Oates

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;
    }

Sean

Thomas Oates thanks for sharing. It did not work for me. I have code in Custom CSS already and may be casuing issues.

Thomas Oates

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).

Sean

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.

Thomas Oates

Sean Agreed, it would be nice if the menu setting was used everywhere.

Ross FCA

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

Ross FCA It’s not a future request. It’s a bug report. If you’re changing the main tab, it should change the sidebar as well.

Ross FCA

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.

Sean

Ross FCA I disagree. The far left menu item is called feed and there is a feed in the top left, so if someone wants to change it to something else, it should change the side bar as well.