Skip to:
Content
Pages
Categories
Search
Top
Bottom

bbp-forum-info


  • bidum00
    Participant

    @bidum00

    My forum page shows my forums correctly, but I want to make the column title say Tournaments instead of Forum. How do I make this change?

    I’m using bbpress 2.5.3, wordpress 3.9.1

Viewing 2 replies - 1 through 2 (of 2 total)

  • Robin W
    Moderator

    @robin-w

    put the following in your functions file

    //This function changes the text wherever it is quoted
    function change_translate_text( $translated_text ) {
    	if ( $translated_text == 'Forum' ) {
    	$translated_text = 'Tournaments' ;
    	}
    	return $translated_text;
    }
    add_filter( 'gettext', 'change_translate_text', 20 );
    

    bidum00
    Participant

    @bidum00

    I think you just also helped me realize that php coding is not far off from actionscript

    Thanks

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