I have a simple JS in my X theme which moves the bbpress search bar from the top of the forum to the bottom:
jQuery(document).ready(function($){
$('.bbp-search-form').insertAfter('ul.bbp-forums');
});
Since reactivating W3 Total Cache this JS is no longer being executed. I guess I should add an exception in W3 to completely ignore the file. Is this the best approach? Or should I add this within my child theme’s JS folder?
If I write an exception, I need the path to that JS file. What is it?
Thanks