Aurangajeb

Remove the dashboard section from the WPUF My Account dashboard page

Jul 23rd, 2020
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. /* Remove the dashboard section from the WPUF My Account dashboard page */
  2.  
  3. add_filter('wpuf_account_sections', 'wpuf_remove_dashboard_section' );
  4.  
  5. function wpuf_remove_dashboard_section($account_sections){
  6. foreach ($account_sections as $key=>$section) {
  7. if(isset($section['slug']) && $section['slug'] == 'dashboard') {
  8. unset($account_sections[$key]);
  9. }
  10. }
  11. return $account_sections;
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment