Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kimcoleman/8d1c2fd64656505d0f6f36a13cc4fa72 to your computer and use it in GitHub Desktop.
Save kimcoleman/8d1c2fd64656505d0f6f36a13cc4fa72 to your computer and use it in GitHub Desktop.
Use a custom social login shortcode with PMPro Social Login (Requires v.3 or above)
<?php
/**
* Use a custom shortcode with the Social Login Add On for Paid Memberships Pro (Requires v.3 or above)
*
*/
function my_pmprosl_custom_shortcode( $shortcode ) {
// Edit this line to change the shortcode displayed on the checkout page.
return '[TheChamp-Login title="Use your Social Account to Login"]';
}
add_filter( 'pmprosl_login_shortcode', 'my_pmprosl_custom_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment