We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On our shipping method selection page, we are looping through all the available shipping methods:
{% for handle, method in cart.availableShippingMethods %} <label> <input type="radio" name="shippingMethodHandle" value="{{ handle }}" data-required {% if handle == cart.shippingMethodHandle %}checked{% endif %}> <strong>{{ method.name }}</strong> <span class="price"> {{ method.amount|commerceCurrency(cart.currency) }} </span> </label> {% endfor %}
Once you select the shipping method, you are taken to the payment selection page, where we also have a mini order review:
{{ cart.getAdjustmentsTotalByType('shipping') | commerceCurrency(cart.currency) }}
I would expect these amounts to match, but they do not. I'm not sure if it's related to shipping discounts or what.
The text was updated successfully, but these errors were encountered:
6408bcb
No branches or pull requests
Description
On our shipping method selection page, we are looping through all the available shipping methods:
Once you select the shipping method, you are taken to the payment selection page, where we also have a mini order review:
I would expect these amounts to match, but they do not. I'm not sure if it's related to shipping discounts or what.
Additional info
The text was updated successfully, but these errors were encountered: