You can use if/else checks for group name using this:
`if( bp_is_groups_component() && ‘my-group-name’ == bp_current_item() ):`
Use it to wrap all your new markup in /groups/single/ group-header.php and various template files
so like maybe:
`<?php
if( bp_is_groups_component() && ‘Support’ == bp_current_item() ):
// New Group Template Here…
?>
`
Yes but it will be a little trickier than that as you’ll need to look at the various files that make up a page and what parts you want to allow to show and what new bits you want to write so you’ll likely need an else: in there somewhere to allow the normal page elements to display if this group is not ‘support’. Just a matter of playing around a little, and of course work in a child theme copy of the files.
Here is what I came up with
`<?php
if( bp_is_groups_component() && ‘Support’ == bp_current_item() ):
// New Group Template Here…
?>`
But I get: `Parse error: syntax error, unexpected ‘<'`