Skip to content

Instantly share code, notes, and snippets.

@goranefbl
Created September 20, 2022 05:47
Show Gist options
  • Select an option

  • Save goranefbl/333d1b848b0b763c03e169b058723ba4 to your computer and use it in GitHub Desktop.

Select an option

Save goranefbl/333d1b848b0b763c03e169b058723ba4 to your computer and use it in GitHub Desktop.
remove my account page tab
<?php
function gens_check_membership_level(){
$user_id = get_current_user_id();
$gens_raf = WPGens_RAF::instance();
remove_action( 'woocommerce_account_menu_items', array( $gens_raf->my_account, 'gens_account_menu_item') );
remove_action( 'init', array( $gens_raf->my_account, 'gens_myreferral_tab'));
}
gens_check_membership_level();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment