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

Is there a way to make woocs work with WCFM?

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, im using wcfm to build a multivendor website. and i initially used WOOCS currency switcher. everything is working fine but in the vendor dashboard, when vendor adds a product front WCFM front end with a Price of 1000 INR, It is taking as 1000 USD. USD is my default currency and i want INR, CAD to work as well. I Can purchase the premium version of WOOCS, If it can work alongside WCFM.

 

Looking forward to be hearing back from you.

 

Regards

Hello

Products can only be added in base currency

M

Try  in  file  /wp-content/plugins/wc-multivendor-marketplace\core\class-wcfmmp-commission.php  -add  code – https://c2n.me/4b1zGzk.png

if(class_exists(‘WOOCS’)){
global $WOOCS;
$_order_currency = get_post_meta($order_id, ‘_order_currency’, true);
$order_rate = get_post_meta($order_id, ‘_woocs_order_rate’, true);
$currencies = $WOOCS->get_currencies();
if (!$order_rate) {
if (isset($currencies[$_order_currency])){
$order_rate = $currencies[$_order_currency][‘rate’];
}
}
if($order_rate){
$commission_amount = $WOOCS->back_convert($commission_amount,$order_rate, 2);
}

}

hi,

im sorry im new to coding. Would this code let the vendor add products in his selected currency?

i just added the code and uploaded a product in rupees, but its reflecting in USD. Could you help me with something like this, User selects the currency at the dropdown -> It would make them add a product in that particular currency.

Currently when i change dropdown, it is showing me the accurate currency symbol but when the price i add is being taken as USD, which is stores default currency.

Hello

Would this code let the vendor add products in his selected currency? - No! https://c2n.me/4bov8tI.png it's impossible

This code solves the problem with calculating the commission