You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I set IShopCartSettings.summary_total_only I'd expect the cart-portlet and the @@cart view to only show the total.
Currently, if you set free_shipping_limit and flat_shipping_cost to 0, the shipping costs are still listed.
If we set summary_total_only to False net and included vat is listed, as well as shipping costs
portlet:
cart:
If we set summary_total_only to True the net and included vat is not listed, but the shipping costs are still listed:
portlet:
cart:
The text was updated successfully, but these errors were encountered:
our use-case:
computation of shipping costs is too complex (depends on weight, country to ship to, phase of the moon, etc) so we simply add a note to the checkout form that shipping costs will be put on the recipe (see screenshots above)
displaying shipping costs: 0 is misleading in this case.
two possible solutions:
A)
I'd make the display of the shipping costs also depend on IShopCartSettings.summary_total_only
B)
alternatively, I'd add a new setting IShopCartSettings.hide_shipping_costs if you guys need a more fine grained solution.
this would simply not list the shipping costs in the cart and checkout form
@rnixx , @jensens, @agitator and others using this package:
please tell me what you do thinks about the idea to also hide shipping costs in case IShopCartSettings.summary_total_only is set to True
Hi @frisi and all, did you end up proceeding with this line of thinking at all? It does seem sensible to have optionally hide shipping costs as per your use case outlined above.
Basically it's a good idea to have the possibility to hide shipping costs. I would prefer to have it as separate option, thus introduce IShopCartSettings.hide_shipping_costs
If I set
IShopCartSettings.summary_total_only
I'd expect the cart-portlet and the@@cart
view to only show the total.Currently, if you set
free_shipping_limit
andflat_shipping_cost
to 0, the shipping costs are still listed.If we set
summary_total_only
toFalse
net and included vat is listed, as well as shipping costsportlet:
cart:
If we set
summary_total_only
toTrue
the net and included vat is not listed, but the shipping costs are still listed:portlet:
cart:
The text was updated successfully, but these errors were encountered: