Skip to content

Instantly share code, notes, and snippets.

@LMNTL
Created July 24, 2019 00:07
Show Gist options
  • Save LMNTL/d499e3defd730353f62c506a4ecb5fe4 to your computer and use it in GitHub Desktop.
Save LMNTL/d499e3defd730353f62c506a4ecb5fe4 to your computer and use it in GitHub Desktop.
Use a custom social login shortcode with PMPro Social Login (Requires v.3 or above)
//use a custom social login shortcode with PMPro Social Login (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