How to display the products without tax classes in Kentico
If you have any issues in displaying the tax classes of a product which is added in wishlist all it matter is the code which you used in transformation.
You can find the following code to edit transformation used for wishlist web part.
*************************************************************************
<%# EcommerceFunctions.GetFormatedPrice(Eval("SKUPrice"), Eval("SKUDepartmentID"))%>
And replace it by this one:
<%# EcommerceFunctions.GetFormatedPrice(Eval("SKUPrice"), Eval("SKUDepartmentID"), Eval("SKUID"))%>
You can find the following code to edit transformation used for wishlist web part.
*************************************************************************
<%# EcommerceFunctions.GetFormatedPrice(Eval("SKUPrice"), Eval("SKUDepartmentID"))%>
And replace it by this one:
<%# EcommerceFunctions.GetFormatedPrice(Eval("SKUPrice"), Eval("SKUDepartmentID"), Eval("SKUID"))%>