Use this filter to add menu items with user dashboard or remove any menu item from user dashboard
One parameter is passed to this hook.
To add new tabs Under Package Settings section.
<?php add_filter('wpdm_user_dashboard_menu','my_custom_dashboard_menus',10,1); ?>
<?php add_filter('wpdm_user_dashboard_menu','my_custom_dashboard_menus',10,1); // $menu_items is an array containing current menu items function my_custom_dashboard_menus($menu_items){ // Removing edit profile menu unset($menu_items['edit-profile']); //Adding new menu item using callback function $menu_items['new-menu-id-1'] = array('name'=> __('Menu Title','text-domain'), 'callback' => 'CallbackFunction'); //Adding new menu item using short-code $menu_items['new-menu-id-2'] = array('name'=> __('Menu Title','text-domain'), 'shortcode' => '[short_code_here]'); return $menu_items; } ?>
For any technical issue, if you are already using pro version please post in pro forum and free version users please post in free forum. Otherwise, if you have any pre-sale or order related query please contact live chat support team. For technical support.