Skip to content

Instantly share code, notes, and snippets.

@andrewlimaza
Created June 1, 2026 09:02
Show Gist options
  • Select an option

  • Save andrewlimaza/0b4f77d5695163b87c4fd8765b8f5cc2 to your computer and use it in GitHub Desktop.

Select an option

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
<?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