Advertisement
arie_cristianD

custom account page dropdown

Mar 21st, 2024
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.79 KB | None | 0 0
  1. /* change account url to woocomerce account page  delete order list menu */
  2.  
  3. add_filter( 'jnews_dropdown_link', 'change_account_url', 20 );
  4.  
  5. function change_account_url( $dropdown ) {
  6.     if ( is_user_logged_in() && array_key_exists( 'account', $dropdown ) ) {
  7.         $dropdown['account']['url'] = wc_get_account_endpoint_url( 'dashboard' );
  8.     }
  9.     if ( is_user_logged_in() && array_key_exists( 'order', $dropdown ) ) {
  10.         unset( $dropdown['order'] );
  11.     }
  12.     return $dropdown;
  13. }
  14.  
  15.  
  16. /* remove account dropdown link that generated by JNews - Video */
  17.  
  18. remove_filter( 'jnews_dropdown_link', array( \JNEWS_VIDEO\Init::get_instance(), 'dropdown_link' ) );
  19.  
  20. /* disable cache notice */
  21.  
  22. add_filter(
  23.     'wp_statistics_cache_status',
  24.     function ( $status ) {
  25.         $status['status'] = false;
  26.         return $status;
  27.     }
  28. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement