mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
9 lines
263 B
Text
9 lines
263 B
Text
function my_remove_action($form_id) {
|
|
$forms = array(110, 125, 170, 210);
|
|
|
|
if ( in_array( $form_id, $forms ) ) {
|
|
remove_action( 'give_after_cc_fields', 'give_default_cc_address_fields' );
|
|
}
|
|
}
|
|
|
|
add_action('give_after_donation_levels','my_remove_action');
|