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

When adding to the cart price changes

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.
12

Hello

Please  do  a test

In  file  - \wp-content\plugins\fancy-product-designer\woo\class-wc-cart.php - I changed this  code - https://share.pluginus.net/image/i20220630120425.png  - to - https://share.pluginus.net/image/i20220630120635.png

$tmp_price = $product->get_price();
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'];
$tmp_price = $tmp_price / $rate;
}
}
}
$final_price = $final_price < $tmp_price ? $tmp_price : $final_price;

Hi,

Now all is working when desktop. On the mobile version adding text is also working, but the designer is freezing when adding pictures. I thought this could be the cache but even after clearing it, the problem still exists.

Can you please test to add a picture from your phone, I tried many times but the designer is stopping working. So the desktop version is all good- prices and functionality, mobile version adding text and the prices are ok too. Only when adding photos in the mobile version the designer stop working and I have to reload the whole page to unblock the page, it just freezes.

Thanks

Ok!  Please disable my  plugin and do a test

everything works on my mobile(android)

Hi,

Sorry, you were correct. My mobile browsers were somehow not working well, I installed a new one and tested it on it and everything is working as it should including the currency adding to the cart, not sure why the other browsers didn't work well, maybe they had some cache. Are there any new shortcodes I need to save for future updates or you have used the same ones from your online guide?

Thank you for your help

Hello

The only new code  - https://share.pluginus.net/image/i20220701073447.png

And also use the code from the article( by the way, later we will add the new code to the article ). But please be more careful when you implement the code.

12