arie_cristianD

Remove woo edit account link on login dropdown

Oct 27th, 2025
706
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. add_filter( 'jnews_dropdown_link', 'j_remove_woo_edit_account', 99 );
  2.  
  3. function j_remove_woo_edit_account( $dropdown ) {
  4.     if ( is_user_logged_in() ) {
  5.         if ( isset( $dropdown['edit-account'] ) ) {
  6.             unset( $dropdown['edit-account'] );
  7.         }
  8.     }
  9.  
  10.     return $dropdown;
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment