Skip to:
Content
Pages
Categories
Search
Top
Bottom

How can I change voices and replies


  • IkerMB
    Participant

    @ikermb

    I would like to change the names of the colums in my forum, I would like to change “voices” and “replies” and I would like to put other name, but i dont know exactly where.

    thanks and sorry for my english.

    regards

Viewing 1 replies (of 1 total)

  • Robkk
    Moderator

    @robkk

    copy loop-topics.php from the bbpress plugin into your child theme in a folder called bbpress and edit these lines.

    <li class="bbp-topic-voice-count"><?php _e( 'Voices', 'bbpress' ); ?></li>
    <li class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? _e( 'Replies', 'bbpress' ) : _e( 'Posts', 'bbpress' ); ?></li>

    You can change it like so.

    <li class="bbp-topic-voice-count"><?php _e( 'Participants', 'bbpress' ); ?></li>
    <li class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? _e( 'Comments', 'bbpress' ) : _e( 'Posts', 'bbpress' ); ?></li>

    Theme Compatibility

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.