Compatibility of FOX currency and WCFM from WC lovers
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 pleaseIf 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.
Quote from sumxpace on August 9, 2023, 20:35Hello, i am testing your plugin on WCFM marketplace plugin. The issue is that orders made in different currencies don’t convert at least in the basic currency at the backend of WCFM marketplace (vendors, admin and customers views). Is it possible to make a custom development to solve the point? I need a solution which will allow multicurrency conversion at the backend of WCFM.
I've tried the custom code offered on your site but it doesn't work.
You can login to a shop test: as.concepts007@gmail.com (pwd: Cocoatest). There are 2 orders (the little amount is made in USD and the second amount in CFA).
Thank you for your support.
Hello, i am testing your plugin on WCFM marketplace plugin. The issue is that orders made in different currencies don’t convert at least in the basic currency at the backend of WCFM marketplace (vendors, admin and customers views). Is it possible to make a custom development to solve the point? I need a solution which will allow multicurrency conversion at the backend of WCFM.
I've tried the custom code offered on your site but it doesn't work.
You can login to a shop test: as.concepts007@gmail.com (pwd: Cocoatest). There are 2 orders (the little amount is made in USD and the second amount in CFA).
Thank you for your support.
Quote from Pablo Borysenco on August 14, 2023, 11:59Hello
Please read this - https://currency-switcher.com/woocs-labs
You can add wp-admin+FTP access to your test site - https://share.pluginus.net/image/i20230222134241.png ->https://share.pluginus.net/image/i20230222134615.png
I'll add it to the adaptation queue
Hello
Please read this - https://currency-switcher.com/woocs-labs
You can add wp-admin+FTP access to your test site - https://share.pluginus.net/image/i20230222134241.png ->https://share.pluginus.net/image/i20230222134615.png
I'll add it to the adaptation queue
Quote from sumxpace on August 14, 2023, 19:52Hello,
Just sent you all the credentials as requested.
Thanks
Hello,
Just sent you all the credentials as requested.
Thanks
Quote from Pablo Borysenco on August 15, 2023, 11:18Hello
Great! I will write to you as soon as there is a result
Hello
Great! I will write to you as soon as there is a result
Quote from sumxpace on August 25, 2023, 18:06Hello Pablo,
Hope everything is going well. Can i have an update about our deal please?
Many thanks
Hello Pablo,
Hope everything is going well. Can i have an update about our deal please?
Many thanks
Quote from Pablo Borysenco on August 28, 2023, 10:04Hello
Your turn will be this Friday.
Hello
Your turn will be this Friday.
Quote from sumxpace on August 28, 2023, 19:06Hello Pablo,
Ok thank you very much.
Regards
Hello Pablo,
Ok thank you very much.
Regards
Quote from Pablo Borysenco on September 1, 2023, 15:15Hello
Please check your ftp access - 530 Login authentication failed
Hello
Please check your ftp access - 530 Login authentication failed
Quote from sumxpace on September 1, 2023, 21:20Hello Pablo,
I just made a test with the credentials for FTP access and it works for me. You can use also Filezilla to login. The server to use is ftp.chgw7839.odns.fr
Thanks
Regards
Hello Pablo,
I just made a test with the credentials for FTP access and it works for me. You can use also Filezilla to login. The server to use is http://ftp.chgw7839.odns.fr
Thanks
Regards
Quote from Pablo Borysenco on September 4, 2023, 10:46Hello
Ok! I will check it
Hello
Ok! I will check it
Quote from sumxpace on September 12, 2023, 16:53Hello Pablo,
Is everything working rigth?
Thanks for your feedback
Hello Pablo,
Is everything working rigth?
Thanks for your feedback
Quote from Pablo Borysenco on September 13, 2023, 10:37Hello
Yes, FTP is ok
I'll write to you as soon as we get the results
Hello
Yes, FTP is ok
I'll write to you as soon as we get the results
Quote from sumxpace on September 13, 2023, 14:18Perfect...Thanks Pablo
Perfect...Thanks Pablo
Quote from Pablo Borysenco on September 22, 2023, 12:45Hello
In file - wp-content\plugins\wc-multivendor-marketplace\core\class-wcfmmp-commission.php - added code - https://share.pluginus.net/image/i20230922134121.png
if (class_exists('WOOCS')) {
global $WOOCS;
$order_currency = $order->get_currency() ;
if ($order_currency != $WOOCS->default_currency) {
$order_currency = $WOOCS->default_currency;
$currencies = $WOOCS->get_currencies();
$rate = $currencies[$WOOCS->current_currency]['rate'];$product_price = $product->get_price() / $rate;
$purchase_price = $purchase_price / $rate;
$item_sub_total = $line_item->get_subtotal() / $rate;
$item_total = $line_item->get_total() / $rate;
$shipping_cost = $shipping_cost / $rate;
$tax_cost = $tax_cost / $rate;
$shipping_tax = $shipping_tax / $rate;
$commission_amount = $commission_amount / $rate;
$discount_amount = $discount_amount / $rate;
$other_amount = $other_amount / $rate;
$refunded_amount = ( $refunded_amount + $refunded_total_tax + $refunded_shipping_amount + $refunded_shipping_tax ) / $rate;
$withdraw_charges = $withdraw_charges / $rate;
$total_commissio = $total_commissio / $rate;$grosse_total = $grosse_total / $rate;
$gross_sales_total = $gross_sales_total / $rate;
$gross_shipping_cost = $gross_shipping_cost / $rate;
$gross_shipping_tax = $gross_shipping_tax / $rate;
$gross_tax_cost = $gross_tax_cost / $rate;
$commission_tax = $commission_tax / $rate;
$transaction_charge = $transaction_charge / $rate;}
}and changed - https://share.pluginus.net/image/i20230922134433.png
Please do a test
this code will convert prices to base currency for new orders
Hello
In file - wp-content\plugins\wc-multivendor-marketplace\core\class-wcfmmp-commission.php - added code - https://share.pluginus.net/image/i20230922134121.png
if (class_exists('WOOCS')) {
global $WOOCS;
$order_currency = $order->get_currency() ;
if ($order_currency != $WOOCS->default_currency) {
$order_currency = $WOOCS->default_currency;
$currencies = $WOOCS->get_currencies();
$rate = $currencies[$WOOCS->current_currency]['rate'];
$product_price = $product->get_price() / $rate;
$purchase_price = $purchase_price / $rate;
$item_sub_total = $line_item->get_subtotal() / $rate;
$item_total = $line_item->get_total() / $rate;
$shipping_cost = $shipping_cost / $rate;
$tax_cost = $tax_cost / $rate;
$shipping_tax = $shipping_tax / $rate;
$commission_amount = $commission_amount / $rate;
$discount_amount = $discount_amount / $rate;
$other_amount = $other_amount / $rate;
$refunded_amount = ( $refunded_amount + $refunded_total_tax + $refunded_shipping_amount + $refunded_shipping_tax ) / $rate;
$withdraw_charges = $withdraw_charges / $rate;
$total_commissio = $total_commissio / $rate;
$grosse_total = $grosse_total / $rate;
$gross_sales_total = $gross_sales_total / $rate;
$gross_shipping_cost = $gross_shipping_cost / $rate;
$gross_shipping_tax = $gross_shipping_tax / $rate;
$gross_tax_cost = $gross_tax_cost / $rate;
$commission_tax = $commission_tax / $rate;
$transaction_charge = $transaction_charge / $rate;
}
}
and changed - https://share.pluginus.net/image/i20230922134433.png
Please do a test
this code will convert prices to base currency for new orders
Quote from sumxpace on September 24, 2023, 01:58Hello Pablo,
Thank you for your message. I will let you know about the test results.
Regards
Hello Pablo,
Thank you for your message. I will let you know about the test results.
Regards
Quote from Pablo Borysenco on September 25, 2023, 10:27Hello
I will wait for your answer
Hello
I will wait for your answer
Quote from sumxpace on September 25, 2023, 19:25Hello Pablo,
I've just made an order to test the plateform. The issue is the same. You can see the new order amount with your admin account. For the store test which received the order the credentials are: as.concepts007@gmail.com (Pwd: Cocoatest).
Thanks
Regards
Hello Pablo,
I've just made an order to test the plateform. The issue is the same. You can see the new order amount with your admin account. For the store test which received the order the credentials are: as.concepts007@gmail.com (Pwd: Cocoatest).
Thanks
Regards
Quote from sumxpace on September 25, 2023, 20:23You can use this account also: admin@sumxpace.com (use the password of the account admintest@sumxpace already sent in private message). It will allow to access to more data.
Thanks
You can use this account also: admin@sumxpace.com (use the password of the account admintest@sumxpace already sent in private message). It will allow to access to more data.
Thanks
Quote from Pablo Borysenco on September 26, 2023, 10:23Hello
Ok! I will check it
Please update my admin access.
Hello
Ok! I will check it
Please update my admin access.