Advertisement
arie_cristianD

delete order list menu in account dropdown

Mar 20th, 2024
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. /* delete order list menu in account dropdown */
  2.  
  3. add_filter( 'jnews_dropdown_link', 'change_account_url', 99 );
  4.  
  5. function change_account_url( $dropdown ) {
  6.     if ( is_user_logged_in() && array_key_exists( 'order', $dropdown ) ) {
  7.         unset( $dropdown['order'] );
  8.     }
  9.     return $dropdown;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement