PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

Dokan different currencies for vendors and customers

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

Hi,

I am using Dokan marketplace, I need to have the EUR for vendors and GBR for customers, the shop sells only in UK at the moment but all vendors are in Europe.

If I place as main currency EUR but as welcome currency GBR also the vendors have GBR, if I use as welcome currency EUR the customers find it when they enter in the website but all customers are in UK and they are not interested at the Euro.

thank you for your help

 

Hello

In this case, you need customization of the code.

An example:

add_action('wp_head',  function(){

if(class_exists('WOOCS')){

$is_vendor = '''; //check  current user

global $WOOCS;

if($is_vendor){

$WOOCS->set_currency('EUR');

}else{

$WOOCS->set_currency('GBR');

}

}

});