Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dwanjuki/c85129f07750b9069bb94c8440a54c2c to your computer and use it in GitHub Desktop.
Save dwanjuki/c85129f07750b9069bb94c8440a54c2c to your computer and use it in GitHub Desktop.
Remove PMPro "profile" section from the BuddyPress profile page Membership tab
<?php // copy from below
/**
* Customize sections displayed on the Membership tab of the BuddyPress profile page
*
* Remove "Profile" section
*
* 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/
*/
function my_pmpro_buddyboss_profile_account_shortcode( $content ) {
$content = '[pmpro_account sections="membership,invoices,links"]';
return $content;
}
add_filter( 'pmpro_buddypress_profile_account_shortcode', 'my_pmpro_buddyboss_profile_account_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment