I need to have a custom group home page for 1 specific group only.
I can customise the group home pages as a whole, but not 1 in particular.
the group is called ‘information’ and i need to load info-home.php
I’ve tried changing the following but nothing seems to work – only the default is loaded:
original:
<?php elseif ( bp_group_is_visible() && bp_is_active( 'activity' ) ) : ?>
<?php locate_template( array( 'groups/single/activity.php' ), true ) ?>
I have tried variations of:
<?php elseif ( bp_is_group_information() && bp_group_is_visible() && bp_is_active( 'home' ) ) : ?>
<?php locate_template( array( 'groups/single/info-home.php' ), true ) ?>
etc.
TIA