Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JarrydLong/6073c541c5b86ed10b303f1955d0a4b0 to your computer and use it in GitHub Desktop.
Save JarrydLong/6073c541c5b86ed10b303f1955d0a4b0 to your computer and use it in GitHub Desktop.
Fix PMPro Payfast showing SSL error in admin menus when set up correctly.
<?php
// Copy from below here...
/*
* Sets the gateway 'ready' global to true
*/
function my_pmpro_payfast_fix_warning( $pmpro_is_ready ) {
return true;
}
add_filter( 'pmpro_is_ready', 'my_pmpro_payfast_fix_warning' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment