Child Theme template changes
-
Hello! I have a Genesis Child Theme, I have added the folder structure from templates in the buddypress plugin, in this form, (in root of child theme: buddypress, groups, single, group-header.php. When I change out some code on thae group-header.php, nothing changes on the site.
I wanted to replace the <h2></h2> with <p></p> in these two places:
<?php if ( bp_group_is_visible() ) : ?><h2><?php _e( ‘Group Admins’, ‘buddypress’ ); ?></h2>
<?php bp_group_list_admins();
AND
do_action( ‘bp_before_group_menu_mods’ ); ?><h2><?php _e( ‘Group Mods’ , ‘buddypress’ ); ?></h2>
<?php bp_group_list_mods();
with :
<?php if ( bp_group_is_visible() ) : ?><p>Service Providers with a Background Check display the Shield icon </p>
AND
<?php bp_group_list_admins();
do_action( ‘bp_before_group_menu_mods’ ); ?>
<p>Service Providers with a Background Check display the Shield icon </p>
and I do not see any change, http://www.choresolution.com/groups/caregivers/
- You must be logged in to reply to this topic.