Apr 17, 2021
I've been trying to get radio buttons working for the last few days. Has anyone done this already for the Simple Theme? I have a coding background (I'm a Python developer in my day-job) but I cannot ...
No content to show
User Activity
01-26-2022
Hmm, @Dbaca I don't think that's true - we need the HS codes on all our shipments in order to calculate the duties.
01-25-2022
When you calculate the tax and duties at the checkout @Dbaca you must require the HS codes for our products. Where does your app get this from?
I know why this is now. I made a dummy "carrier" using the CarrierService API to see what information Shopify is using to determine the shipping thresholds. It turns out the prices in the store currency are used to compute the shipping thresholds, so...
I'm trying to offer free shipping on orders above a certain price threshold. E.g. I can set the free shipping threshold at £70.00. When my customer wants to check out in USD or EUR, what is the threshold for free shipping in their currency? For examp...
I've set free shipping for. orders more than £25. This works well, if the customer is shopping in GBP. However, I've tested my site in other currencies and it doesn't work as expected. Taking AUD as an example, I can compute the expected free shippin...
02-20-2021
It's not perfect, but they could give customers the option of setting their shipping location before getting to the shipping page. Several websites have a little flag at the top right of the page.
02-20-2021
Shopify seems to be completely broken at one of the few things it should do - handling prices properly...It's not difficult: allow us to set product prices ex-VAT. Then update the displayed prices on the site with the VAT-rate of the customer's count...
02-20-2021
I'm trying to add VAT to the visible price of products in my theme, e.g. exerpt from product-template.liquid: <span id="ProductPrice" class="product-single__price" itemprop="price" content="{{ current_variant.price| times:1.2 | divided_by:...