For example, I want Egypt, Indonesia, Malaysia, India, Brazil and a few more countries to have lower prices. I want to set a certain product’s price to, let’s say, 8 USD for these countries. But I don’t want it to show in USD, I want it to show in the currency that matches the country.
Another issue is that “Countries not covered by your other zones” is set to the default USD, when it should instead be the local currency.
Before installing this plugin, geolocation was working fine, it was showing the correct currencies based on the country.
I tested with the test mode and also with VPN. Please help as soon as you can. Thanks.
I’m building a website where shipping costs vary according to the shipping class (that’s good). And there are specific prices for certain zip codes. Everything seems set up right, but for some reason, now the price doesn’t adapt to the zip code.
The site is under construction so I don’t know how to give access…
]]>https://snipboard.io/B5hkmC.jpg
https://snipboard.io/ArcZDh.jpg
https://snipboard.io/JOn54Z.jpg
]]>However, just noticed, if someone adds 2 of the same product or 2 of a similar product in the same “Heavy” shipping class, it just charges the once.
Is it possible to charge per item. For example, shipping is £300. So 1 item is £300, 2 items are £600, etc. At the moment, It is just a rate of £300 regardless of how many the customer adds to the basket.
]]>I had a problem with the delivery zones.
In the plugin settings I have selected the delivery zone “Germany”.
However, the plugin shows a message for Austria too.
Is it possible to hide the message about free shipping for Austrian residents?
And the second question. For the zone Germany we have free shipping from 29 euros, for Austria – from 49. Is it possible to customize the plugin for several zones at the same time?
]]>// default checkout country
add_filter( 'default_checkout_billing_country', 'change_default_checkout_country' );
add_filter( 'default_checkout_shipping_country', 'change_default_checkout_country' );
function change_default_checkout_country() {
return 'PK'; // country code
}
// default checkout state
add_filter( 'default_checkout_billing_state', 'change_default_checkout_state' );
add_filter( 'default_checkout_shipping_state', 'change_default_checkout_state' );
function change_default_checkout_state() {
return 'SD'; // state code
}
]]>Thanks
]]>