Hello
If i switch option: “Is multiple allowed” to NO the discounts works but only when i browse the product in the shop but when i add some items to the cart and then i go further to the last stage of the cart – that is right behaviour
So lets try next hint:
* open index.php of the plugin
* find next code
public function reset_currency()
{
$this->storage->set_val('woocs_current_currency', $this->default_currency);
$this->current_currency = $this->default_currency;
}
and add return as first line of the function:
public function reset_currency()
{
return;
$this->storage->set_val('woocs_current_currency', $this->default_currency);
$this->current_currency = $this->default_currency;
}
So after this price will not be reset on checkout page – then test all – paying, orders, emails …
Hello 😉 Thank you very ver much for quick reply. I’ve just added return function as you suggested. I’ve tested few orders and it is better but the shipping cost is still wrong (it is to high). I set shipping cost to 4.5 euro but on the checkout page in the cart shows 90 zł and it should be 20 zł. Maybe it is possible to exclude shipping cost from currency switcher and set it as 20 zł but i couldn’t find it anywhere. On email order confirmation prices of the products is ok. When i tried to state an invoice prices are in to euros. for eg. product price is for 100 euro -> on the checkout page is 440 zł and it is ok->on the confirmation is 440 zł and it is ok ->invoice is 100 zł and that is wrong. I like the plugin and i want to go to pro version but i need to be sure it works fine.I hope you can solve this small problem…so far so good…my best regards and looking forward to news from you.
Hello
Understood you, but here we have 2 ways
* customization work for fee from my side with this shipping plugin
* you contact to that plugin support and asks theme will it be possible change situation from their side
Maybe it is possible to exclude shipping cost from currency – no, i have no way to recognize that recounting works for shipping plugin …
WOOKS recount using woo hooks so I can’t influence from my code side to another plugin …
Hello. Plugin support told me that they don’t want to modify the plugin because it maybe cause the problems in the future after upgrade. But the problem is not only with shipping plugin but also with Invoice (prices change back from zł to euro). Both plugins i have bought from the same author. In response for my question about modifying plugin they told me also that for eg. Aelia currency switcher works prefect with shipping, invoice, payment gateway plugins and with group pricing and there is no need to change them and they claim the problem is with your currency switcher plugin. Best regards
Hello.
Aelia currency switcher works prefect – so why you not using this plugin?