Jump to Article Category ...
All Categories
Bissful - Wedding & Event WordPress Theme (5)
Coven - Furniture Store WordPress Theme (5)
NestLand - Real Estate WordPress Theme (5)
Nestbyte- Creative Agency and Startup WordPress Theme (5)
Nestbyte Creative Agency HTML5 Template (1)
Santoi - AI Agency and Technology WordPress Theme (5)
Electio Electronics & Gadgets Store WooCommerce Theme (5)
Mayosis - Digital Marketplace WordPress Theme (47)
Uroan - Jewellery Store WordPress Theme (5)
Crete - Personal Portfolio and Creative Agency WordPress Theme (6)
Woodly - Animated Furniture WooCommerce Theme (6)
Medinik - Doctor & Medical WordPress Theme (13)
Nikstore - Creative Multipurpose WooCommerce Theme (6)
SaasPlate - Landing Page WordPress Theme (6)
Pivoo - Food & Recipe Blog WordPress Theme (13)
Emerce - Multipurpose WooCommerce WordPress Theme (13)

Add Custom Menu To EDD Frontend Submission Dashboard
If you want to add custom menu to EDD Frontend Submission Dashboard you have to follow these step.
You must use the Mayosis Child theme to add any code. Either way, the code will be replaced with a new theme update.
Edit the Mayosis Child themes functions.php file and add the below code to it.
function your_name_custom_menu( $menu_items ) {
$menu_items['custom_menu_name'] = array(
"icon" => "",
"task" => array( 'custom_menu_name' ),
"name" => __( 'Custom Menu', 'Text Domain' ), // the text that appears on the tab
);
}
add_filter( 'fes_vendor_dashboard_menu', 'your_name_custom_menu' );
// make the new tab work
function custom_download_task_response( $custom, $task ) {
if ( $task == 'custom_menu_name' ) {
$custom = 'custom_menu_name';
}
}
add_filter( 'fes_signal_custom_task', 'custom_download_task_response', 10, 2 );
// the content associated with your new tab
function edd_custom_menu_name_tab_content() {
//place your content here
}
add_action( 'fes_custom_task_purchase_history','edd_custom_menu_name_tab_content' );