Info
- 5 posts
- 3 voices
- Started 2 years ago by sdv1
- Latest reply from sdv1
- This topic is not resolved
Issue with tags
-
- Posted 2 years ago #
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/ -
- Posted 2 years ago #
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?
-
- Posted 2 years ago #
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.
-
- Posted 2 years ago #
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.phpin 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(" "," ",$heatmap);} ?> -
- Posted 2 years ago #
Thanks _ck_ ! how to move these tags at the bottom of forum?....I will use sidebar for something else.
-
You must log in to post.