Skip to:
Content
Pages
Categories
Search
Top
Bottom

Child Theme template changes


  • Carin
    Participant

    @sparksfreebies

    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/

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar