Code-Snippets-Functions/Execute a function on a child site/Charitable/remove-amount-raised-donor-count.txt

7 lines
440 B
Text

function ed_unhook_default_template_functions() {
remove_action( 'charitable_campaign_summary', 'charitable_template_campaign_percentage_raised', 4 );
remove_action( 'charitable_campaign_summary', 'charitable_template_campaign_donation_summary', 6 );
remove_action( 'charitable_campaign_summary', 'charitable_template_campaign_donor_count', 8 );
}
add_action( 'after_setup_theme', 'ed_unhook_default_template_functions', 11 );