Move the bbpress search form to the bottom

Hi,

If you look here:

https://followtheboat.com/forums/

you can see the bbpress search div bbp-search-form appears at the top of the forum. I’d like to move it to the bottom.

Please advise, thank you.

Hi @demonboy,

Thank you for reaching out to us. This would require custom development as this is not a theme feature by default and is outside of our support scope, but we will do our best to help you getting started with the customization but we will not be able to implement it. To move down the search bar, try adding the following code in the Theme Options > JS:

jQuery(document).ready(function($){
	$('.bbp-search-form').insertAfter('ul.bbp-forums');
});

Don’t forget to clear all caches including your browser’s cache after adding the code. Hope this helps!

Great, thanks for that. I assumed that the formatting of the forum was defined by the X theme, so I appreciate your help. That worked exactly as I wanted. Thank you.

Hi @demonboy,

We’re glad we could help. Have a great day.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.