Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Remove the dashboard section from the WPUF My Account dashboard page */
- add_filter('wpuf_account_sections', 'wpuf_remove_dashboard_section' );
- function wpuf_remove_dashboard_section($account_sections){
- foreach ($account_sections as $key=>$section) {
- if(isset($section['slug']) && $section['slug'] == 'dashboard') {
- unset($account_sections[$key]);
- }
- }
- return $account_sections;
- }
Advertisement
Add Comment
Please, Sign In to add comment