Skip to:
Content
Pages
Categories
Search
Top
Bottom

[bbp-topic-tags] not displaying all topic tags


  • nirgalo
    Participant

    @nirgalo

    Hi, bbpress 2.5.6, when I use the [bbp-topic-tags] shortcode, it displays a certain number of tags, but not all the tags assigned to topics. Is this normal? Is the code limiting the output to some max count? Can this be changed? Thanks.

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

  • Robkk
    Moderator

    @robkk

    i dont think it would show ALL the topic tags only the most used ones.

    like this topic is tagged bbp-topic-tags but the tag does not show in the topic cloud in the sidebar on the forum archive of this site.


    AilyRoot
    Participant

    @ailyroot

    Hi
    we use bbpress 2.5.8, we use shortcode to show tag cloud, is there any way to control cloud’s length? it is way too long for us now


    Robkk
    Moderator

    @robkk

    You can use the tag cloud widget, select the taxonomy to be topic tags, then use this PHP function in your child theme or in a functionality plugin.

    add_filter('widget_tag_cloud_args','set_tag_cloud_sizes');
    function set_tag_cloud_sizes($args) {
    $args['smallest'] = 12;
    $args['largest'] = 19;
    return $args; }
Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar