Hello,
"...and then have the tax added when the item is added to the cart."
I guess you mean "
displayed", because the taxes are
added or
calculated in the cart.
Anyway, your solution may be to go to
Main tab (in
HikaShop Configuration), in
Taxes part change the
Show taxed prices option for
Display both.
And add some
Css command in order to display taxed price
only when you need it.
More precisely, you can use this kind of Css code :
.product_price_taxed_class {
display: none;
}
=> Taxed price will disappear on All page, and add too :
.checkout_page_class OR _id .product_price_taxed_class {
display: block;
}
=> Only display on Cart.
And in order to answer you about your return, you have to understand that an e-commerce solution is a
complex system and especially when it's sold in more that
120 countries, it have to fit all countries taxes rules, plus specific way to do business.
Of course, we want to keep simple configuration and avoid to "customize" is our goal, but it needs
lots of work and compromises.
BUT you have to know too that we are aware of this lack of ergonomics, and works on the
interaction cart, taxes and configuration.
Hope this will help you.
Regards