DOKAN
Add next code into file functions.php of the current wordpress theme:
add_action('template_redirect', function () {
// Detect Dokan vendor dashboard
if (function_exists('dokan_is_seller_dashboard') && dokan_is_seller_dashboard()) {
global $WOOCS;
// Disable WOOCS currency switching on vendor dashboard
if (isset($WOOCS)) {
remove_all_actions('woocommerce_before_calculate_totals');
remove_all_filters('woocommerce_currency_symbol');
remove_all_filters('raw_woocommerce_price');
remove_all_filters('woocommerce_price_format');
}
}
}, 1);
