Forums

Join
bbPress Support ForumsTroubleshootingIssue with tags

Info

Issue with tags

  1. Tags on my forum are not shown properly, some text is moved under discussions.
    Pls help me to fix this issue. here is my forum
    http://forums.officelivepages.net/

  2. What would you like to do to solve the problem? Right now, you have just a few tags and this one tag is largest since it's used most often, and it's a wide combination of words, and the overflow hidden, so it goes behind the content. What would you propose to do to avoid this? It's working as designed, but maybe you want a different design?

  3. Thanks chrishajer!

    it definitely doesn't give good impression to first time visitors .....I'm using default theme.

    for these long tags, is it possible to move truncating word to new line or keep small font (but bold) for long tags.

    please suggest me something to fix this.

  4. There isn't a line long enough to support the extra long tags. What you can do, is UNDO the   that bbPress replaces the spaces with, which will force everything to wrap. I don't think it will look too good but it's your call.

    Add this to a file called functions.php in your theme folder.
    (make a new file if it doesn't exist)

    <?php
    add_filter('bb_get_tag_heat_map','wrap_tags');
    function wrap_tags($heatmap) {return str_replace("&nbsp;"," ",$heatmap);}
    ?>
  5. Thanks _ck_ ! how to move these tags at the bottom of forum?....I will use sidebar for something else.

  6. You must log in to post.