Reputation: 1
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
Reputation: 1
1. Check Dokan & Theme Settings Again
2. Hide via CSS
If the option still appears, you can hide it using CSS:
.dokan-dashboard .dokan-request-quote-menu {
display: none !important;
}
3. Remove via PHP (Recommended)
If the button is hardcoded into the Dokan template, you may need to remove it with a PHP snippet:
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' );
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