• Resolved fragile2005

    (@fragile2005)


    hi. thank you for the free version. How can i edit the tabs/menu on the left side of the Dokan user dashboard page? I mean lets say i want to edit PRODUCTS to ADD PRODUCTS or UPLOAD AN ITEM; ORDERS to MY ORDERS? Which file do i edit which will change that for me?

    THANK YOU

    • This topic was modified 7 years, 6 months ago by fragile2005.
Viewing 2 replies - 1 through 2 (of 2 total)
  • @fragile2005, Thanks for your ticket. Each menu has own template. Now, if you want to edit the product upload page then you have to check on dokan-lite/templates/products/new-product-single.php file and similarly, find dokan-lite/templates/orders folder to get all the order related file.

    @fragile2005 Thanks for your ticket. To edit the menu all you need to do is to just copy paste these code in your functions.php file and hit save. Hopefully this will work for you.
    Regards

    
    add_filter( 'dokan_get_dashboard_nav', function( $menu ) {
    	$menu['products']['title'] = 'Add Products';
    	$menu['orders']['title'] = 'My Orders';
    	return $menu;
    });
    
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘how to edit left tabs/menu on user dashboard page’ is closed to new replies.