Created
August 24, 2022 11:53
-
-
Save matheuswd/0a2753708e20d834133a4cd5ceb8eb5f to your computer and use it in GitHub Desktop.
Hide the Gift Aid Warning when the country is not the UK and the currency is not Pounds
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function givewp_hide_gift_aid_warnings($notice_args) { | |
if( $notice_args['id'] == 'gift-aid-currency-notice' || $notice_args['id'] == 'gift-aid-country-notice' ) { | |
$notice_args['show'] = false; | |
} | |
return $notice_args; | |
} | |
add_filter( 'give_register_notice_args', 'givewp_hide_gift_aid_warnings' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment