Gruha Mart
Gruha Mart

Reputation: 1

Removing features on dokan customer dashboard

How can i remove REQUEST QUOTE on customer dashboard, I've tried everything

I've tried using dokan settings and theme customizations.

I don't know how to get this done as customer doesn't need to request quote, all they need on their dashboard is ORDER, TRACK ORDER, PROFILE, DELIVERY TIME and a few others. Please help

Upvotes: 0

Views: 24

Answers (1)

buyecomstores
buyecomstores

Reputation: 1

1. Check Dokan & Theme Settings Again

  • Navigate to Dokan → Settings → Selling Options and ensure Request a Quote is disabled.
  • If your theme has any Request a Quote settings, disable them.

2. Hide via CSS

If the option still appears, you can hide it using CSS:

  • Go to Appearance → Customize → Additional CSS
  • Add this code:
.dokan-dashboard .dokan-request-quote-menu {
    display: none !important;
}
  • Save and check if it disappears.

3. Remove via PHP (Recommended)

If the button is hardcoded into the Dokan template, you may need to remove it with a PHP snippet:

  • Add this to your child theme’s functions.php file or use the Code Snippets plugin:
function remove_dokan_request_quote_menu( $urls ) {
    unset( $urls['request-quote'] ); // Removes the 'Request a Quote' tab
    return $urls;
}
add_filter( 'dokan_get_dashboard_nav', 'remove_dokan_request_quote_menu' );
  • Save and check the customer dashboard.

4. Check for Plugins Adding This Feature

  • If you have a "Request a Quote" plugin installed (like YITH Request a Quote), deactivate it.

  • Check if disabling the plugin removes the option.

Upvotes: 0

Related Questions