Re: Search Bar
edit/ hmm far too slow
Use a conditional template tag
For reference they are found here:
https://codex.buddypress.org/developer-docs/conditional-template-tags/
You will want something like:
bp_is_front_page()
Wrap the div#search-bar in an:
<?php if(!bp_is_front_page()): ?>
<div id="search-bar">
</div><!-- #search-bar -->
<?php endif; ?>
Something like that anyway.
Am awaiting how it’s done!
Surely Gpo1 you had an inkling how to do this hadn’t you?