Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #276611

    I am using Forums in Enfold and would like to have a short intro above the Forums.

    Is it possible to do this?

    Thanks.

    #276629

    Hey!

    There is this conditional you can use to detect when you are on a BBPress page:

    if(is_bbpress()){
    echo "intro";
    }
    

    Where exactly you want to put this message?

    Regards,
    Josue

    #276654

    Just above the search bar (or below it):

    https://kriesi.at/support/

    On the main forum (support) page to explain to new people how the forum area works.

    • This reply was modified 9 years, 9 months ago by Micheal0424.
    #276667

    Hi!

    Please add following code to Functions.php file in Appearance > Editor and adjust as needed

    add_action( 'bbp_template_before_forums_loop', 'bbp_custom_text' );
    function bbp_custom_text() {
       echo 'These are forum rules...';
    }

    Cheers!
    Yigit

    #276756

    That worked perfectly, thanks.

    #276757

    Hi!

    You are welcome, glad we could help! :)

    Cheers!
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Enfold Forums’ is closed to new replies.