Created
June 1, 2026 09:02
-
-
Save andrewlimaza/0b4f77d5695163b87c4fd8765b8f5cc2 to your computer and use it in GitHub Desktop.
Remove the "View and Print Membership Card" Link in the Membership Account Page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Remove the View and Print Membership Card Link from the Membership Account page. | |
| * To add this code to your site, please visit - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/ | |
| */ | |
| function my_pmpro_hide_membership_card_link() { | |
| remove_action( 'pmpro_member_links_top', 'pmpro_membership_card_member_links_top' ); | |
| } | |
| add_action( 'init', 'my_pmpro_hide_membership_card_link' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment