Skip to:
Content
Pages
Categories
Search
Top
Bottom

How can I change the word “Forums”?

  • @elsoar

    Participant

    Yes, I want to change the name/word “Forums” to something else, this is important to me.

    image

    Thanks in advance

Viewing 3 replies - 1 through 3 (of 3 total)
  • @robin-w

    Moderator

    Dashboard>settings>forums and change the Forum Root Slug

    @elsoar

    Participant

    I don’t mean the link, I mean the title/word itself that appears.

    @robin-w

    Moderator
    function rew_change_text( $translated_text, $text, $domain ) {
    if ($domain!='bbpress') return $translated_text ;
      $translated_text = str_replace('Forum', 'Elephant', $text) ;
    return $translated_text;
    }
    
    add_filter( 'gettext', 'rew_change_text', 20, 3 );

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

    where %your-theme-name% is the name of your theme

    or use

    Code Snippets

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar