I am using Forums in Enfold and would like to have a short intro above the Forums.
Is it possible to do this?
Thanks.
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
Just above the search bar (or below it):
On the main forum (support) page to explain to new people how the forum area works.
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
That worked perfectly, thanks.