Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter rsl89

    (@rsl89)

    Please also provide a special code for disabling coupons in the seller’s console, as well as disabling export and import of orders

    Plugin Support Jahidul Hassan Mojumder

    (@jahidulhassan)

    Hi @rsl89

    I am not clear about the pop-up window you are referring to. The screenshot that you have shared referring to the visit store button.

    About coupon, is not a feature included in Dokan lite. As per the forum rules, we are not authorized to discuss a feature that is not included in Dokan lite.

    To disable/ hide the order export buttons, you can add the below-mentioned CSS on your site’s wp-admin panel’s Appearance > Customize > Additional CSS.

    .dokan-order-filter-serach .dokan-right {
      display: none !important;
    }

    I hope this helps.

    Thread Starter rsl89

    (@rsl89)

    Yes, I’m talking about a pop-up window on a button that leads to a visit to the store, how to make a pop-up window in front? Can you write css code to embed it into a theme?

    Thread Starter rsl89

    (@rsl89)

    ?

    Hi @rsl89,

    By default, the Tooltips of the Dokan Common Links get styles from the library that cannot be changed.

    But you can change the position from top to right by adding the following code snippet at the bottom of your child theme’s functions.php file.

    #-- Vendor Dashboard Common Links --#
    function vendor_dashboard_common_links($common_links){
      $common_links = '<li class="dokan-common-links dokan-clearfix">
                <a title="' . __( 'Visit Store', 'dokan-lite' ) . '" class="tips" data-placement="right" href="' . dokan_get_store_url( dokan_get_current_user_id() ) . '" target="_blank"><i class="fa fa-external-link"></i></a>
                <a title="' . __( 'Edit Account', 'dokan-lite' ) . '" class="tips" data-placement="top" href="' . dokan_get_navigation_url( 'edit-account' ) . '"><i class="fa fa-user"></i></a>
                <a title="' . __( 'Log out', 'dokan-lite' ) . '" class="tips" data-placement="left" href="' . wp_logout_url( home_url() ) . '"><i class="fa fa-power-off"></i></a>
            </li>';
      return $common_links;
    }
    add_filter( 'dokan_dashboard_nav_common_link', 'vendor_dashboard_common_links' );

    Thank you!

    Thread Starter rsl89

    (@rsl89)

    Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘The pop-up window disappears’ is closed to new replies.