Skip to content

Instantly share code, notes, and snippets.

@matheuswd
Created August 24, 2022 11:53
Show Gist options
  • Save matheuswd/0a2753708e20d834133a4cd5ceb8eb5f to your computer and use it in GitHub Desktop.
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
<?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