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

[WOOCS LABS] WOOCS with Lumise

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.

I found that Lumise (https://codecanyon.net/item/lumise-product-designer-woocommerce-wordpress/21222684) will cause that the cart & checkout page get a wrong calculation of product price. For example, my default currency in WOOCS is USD, and the price of the product is $25, suppose the price in HKD is $195. But in the cart/checkout page, the price in HKD is counting it twice to $1521.

The following picture shows the situation...

https://prnt.sc/pbqcxs

The conflict plug-ins should be:

Lumise plugin: https://codecanyon.net/item/lumise-product-designer-woocommerce-wordpress/21222684

Vendor & Design Launcher Addon for Lumise: https://codecanyon.net/item/vendors-design-launcher-addon-for-lumise-product-designer/24082588

Hello

Please add  your wp-admin +FTP access

I will add this plugin to the adaptation queue

wp-admin and FTP access sent, thanks a lot.

Hello

I added this plugin to the adaptation queue

Hello

Please  check   admin  access - https://c2n.me/449zhg1.png

I have updated the login password, please check again thanks.

Hello

Ok!  I will  check  it

Hello

Please do test!

In file - \wp-content\plugins\lumise\lumise.php - I added  code - https://c2n.me/44h2UJW.png

if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$currrent = $WOOCS->current_currency;
if ($currrent != $WOOCS->default_currency) {
$currencies = $WOOCS->get_currencies();
$rate = $currencies[$currrent]['rate'];
$price= $price/ $rate;
}
}
}