Created
June 22, 2020 19:16
-
-
Save kimcoleman/71b2b09c1151b7a20d765638bc4b8077 to your computer and use it in GitHub Desktop.
Hide the 'Payment Method' list item from the Billing Information page.
This file contains 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 | |
/** | |
* Hide the 'Payment Method' list item from the Billing Information page. | |
* | |
* You can add this recipe to your site by creating a custom plugin | |
* or using the Code Snippets plugin available for free in the WordPress repository. | |
* Read this companion article for step-by-step directions on either method. | |
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/ | |
* | |
*/ | |
add_filter( 'pmpro_billing_show_payment_method', '__return_false' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This recipe is included in the blog post on "Hide the Payment Method From the Billing Information Page" at Paid Memberships Pro here: https://www.paidmembershipspro.com/hide-the-payment-method-from-the-billing-information-page/