Skip to:
Content
Pages
Categories
Search
Top
Bottom

how to make forum description text clickable?

  • @andrew55

    Participant

    Hi, is there a way to make the forum description text clickable, so it links into the forum (just like the forum title)?

    For example, on my site here, there is forum description text “See videos and tutorials on how to get the most our the Community Area…”

    Is there a function or theme edit to make this clickable?

Viewing 4 replies - 1 through 4 (of 4 total)
  • @robin-w

    Moderator

    link to an example, so I can see what template or function please

    @andrew55

    Participant

    @robin-w

    Moderator
    if (!is_admin() ) {
    add_filter( 'bbp_get_forum_content', 'rewst', 10 , 2 ) ;
    }
    function rewst ($content, $forum_id ){
    	if (!empty ($content)) $content= '<a class="bbp-forum-rew" href="'.bbp_get_forum_permalink($forum_id).'">'.$content.'</a>' ;
    return $content ;
    }

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

    where %your-theme-name% is the name of your theme

    or use

    Code Snippets

    @andrew55

    Participant

    Thank you very much. Works great!

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