Skip to:
Content
Pages
Categories
Search
Top
Bottom

Changing Forums & Topics labels


  • kettlewell
    Participant

    @kettlewell

    I’m using bbPress 2.3.2 , WP 3.5.1 and a uDesign theme.

    Here’s a link to my site: http://www.techwellbusiness.com/support/

    I’m trying to change all label instances of ‘Forum’ to ‘Support’ ( like in the breadcrumbs, archive title, etc)

    And all instances of ‘Topic’ to ‘Question’

    I think if I can get one filter to work, and I can find the others and get them to work…

    But I’m not finding the right filters and/or I’m not using them right…

    Any thoughts, tips or pointers would be greatly appreciated.

    Thanks,

    Matt

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

  • kettlewell
    Participant

    @kettlewell

    Update:

    I’ve figured it out.

    Part of it was my theme using the post_type_archive_title()

    Part was needing to set a filter:

    function test_support() {
      return 'Support';
    }
    add_filter('bbp_get_forum_archive_title', 'test_support');

    And part of it is needing to modify the default bbpress theme by placing it in my own theme directory, and modifying the hard-coded instances of Forums and Topics.

    A future enhancement / feature would be some sort of an options file to allow this text to be modified in one place somewhere…


    robertosalemi
    Participant

    @robertosalemi

    Hi, thanks for your solution.

    Roberto.

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