Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author weDevs

    (@wedevs)

    Please open your plugin folder/includes/template-tags.php file. In this file you will get this function- function dokan_get_dashboard_nav(). You can change your menu from here.

    Thanks.

    Thread Starter alsomusic

    (@alsomusic)

    Hello, thanks for the information.

    One more question, there is a possibility of direct sellers straight to the Dashboard when performing login?

    That is, they do login tab WooCommerce My Account and then are directed to https://meusite.com/dashboard

    Awaiting.
    Cesar

    Plugin Author weDevs

    (@wedevs)

    Insert those code in the function.php file of your theme or child theme-

    add_filter( 'woocommerce_login_redirect', 'ckc_login_redirect', 10, 2 );
    
    function ckc_login_redirect( $redirect_url, $user ) {
        // Change this to the url to Updates page
    
        if( $user->roles[0] == 'seller' ) {
            return dokan_get_navigation_url(‘dashboard’);
        }
    
    return $redirect_url;
    }
    Thread Starter alsomusic

    (@alsomusic)

    Thanks!

    Plugin Author weDevs

    (@wedevs)

    You are welcome.

    Hi,

    I installed the Dokan lite.
    I’m new in wordpress. after the installation, how can i create my store?
    There is any tutorial?

    Thanks
    Yaniv

    Plugin Author weDevs

    (@wedevs)

    Hello,

    You can read those documentation here- https://docs.wedevs.com/category/plugins/dokan-plugins/getting-started-dokan/.

    THanks.

    Hi,
    I can’t find how to install the dokan lite.
    There is no possible to login to weDevs account in dokan-lite.
    Under Dokan menu i got:
    Dashboard
    withdraw
    settings
    add-ons

    Need your help
    Yaniv

    Plugin Author weDevs

    (@wedevs)

    Hello,

    Install Dokan plugin as you have installed other plugin in your site. After installing Dokan please go to Dokan->Settings->Page settings and set you dashboard page. After installing dokan lite please install a WooCommerce compatible theme. Then in the frontend you will get seller dashboard.

    Thanks.

    Hi,
    Is there anyway to round-off the withdrawal amount of seller? Like if there is $547 in the seller account and when he tries to withdraw the amount let that amount be rounded off to $545? How this can be done?

    Next is how the commission of admin can be managed? I wanted to keep the commission rate of shipping also. How this can be done?

    It will be a great relief for meh!!

    Hoping to get reply asap!!

    Thanking you all.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Change dashboard menu’ is closed to new replies.