Created
September 20, 2022 05:47
-
-
Save goranefbl/333d1b848b0b763c03e169b058723ba4 to your computer and use it in GitHub Desktop.
remove my account page tab
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 | |
| 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