Advertisement
Aurangajeb

remove billing address link from wpuf account-dashboard tab

Oct 12th, 2021
1,435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. /* remove billing address link from wpuf account > dashboard tab */
  2.  
  3. add_filter('wpuf_my_account_tab_links', 'remove_billing_address_link');
  4. function remove_billing_address_link($tabs){
  5.  
  6.     if(isset($tabs['billing-address'])) {
  7.        
  8.         unset($tabs['billing-address']);
  9.     }
  10.  
  11.     return $tabs;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement