• Resolved blackchopper

    (@blackchopper)


    Hi. I am using currency switcher and in general it works fine. But there is one problem with compatibility with plugins such as Group pricing. I have tested few simillar plugins to group prcing and still the same the problem. I put the product in Euro but the welcome currency is Polish zloty PLN. When i activate Group Pricing – prices change into some wierd very high values. 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 (the point when you finalize the transaction and pay for the product – checkout) the prices change from polish zloty to euro and also cost of the shipment changes its values. Prices are in Euro also on the order confirmation which is send by email to a client. In Poland you can’t pay by Euro also the prices in the shop must be in Polish Zloty. Please help me to solve this problem. Thank you in advanced
    I am using uptdated Avada theme but on clean wordpress the problem is the same.

    https://www.ads-software.com/plugins/woocommerce-currency-switcher/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author RealMag777

    (@realmag777)

    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 …

    Thread Starter blackchopper

    (@blackchopper)

    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.

    Plugin Author RealMag777

    (@realmag777)

    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 …

    Thread Starter blackchopper

    (@blackchopper)

    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

    Plugin Author RealMag777

    (@realmag777)

    Hello.

    Aelia currency switcher works prefect – so why you not using this plugin?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Compatibility problem with group pricing’ is closed to new replies.