Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MaximilianoRicoTabo/afbfa27ea93f300335fcbe396cdffabe to your computer and use it in GitHub Desktop.
Save MaximilianoRicoTabo/afbfa27ea93f300335fcbe396cdffabe to your computer and use it in GitHub Desktop.
Remove stripe webhook setup notice
<?php
/**
* Remove stripe webhook setup notice
*
* Add this code to your site by following this guide - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
add_action('admin_init', 'remove_pmpro_gateway_stripe_notice');
function remove_pmpro_gateway_stripe_notice() {
remove_action( 'admin_notices', array( 'PMProGateway_stripe', 'show_stripe_webhook_setup_notice' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment