Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save travislima/67c13bfd563e5ce3867f50403ca0550f to your computer and use it in GitHub Desktop.
Save travislima/67c13bfd563e5ce3867f50403ca0550f to your computer and use it in GitHub Desktop.
Remove homepage replacement for admins only (Paid Memberships Pro HomePages Add On)
<?php
/**
* Remove the replacement homepage from the Member HomePages Add On for Paid Memberships Pro.
*
* Add this code (L7-L12 only) to your PMPro Customizations Plugin - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function remove_member_homepages_redirect(){
if ( current_user_can( 'manage_options' ) ) {
remove_action( 'template_redirect', 'pmpromh_template_redirect_homepage' );
}
}
add_action( 'template_redirect', 'remove_member_homepages_redirect', 5 );
@laurenhagan0306
Copy link

This recipe is included in the blog post on "Remove homepage redirect for admins only (PMPro Member Homepages Add On)" at Paid Memberships Pro here: https://www.paidmembershipspro.com/remove-homepage-replacement-for-admins-only/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment