Why HTML tags are visible in the Product description field in Kentico
The HTML tags are displayed in the product description field mostly due to copying of text from text editor, like word.In the transformation which is used to display the product details, the default setting for the description field is set to be HTML encoded:
*******************************************************************
<td><%# Eval("SKUDescription", true) %></td>
You can Change it to:
<td><%# Eval("SKUDescription") %></td>
*******************************************************************
*******************************************************************
<td><%# Eval("SKUDescription", true) %></td>
You can Change it to:
<td><%# Eval("SKUDescription") %></td>
*******************************************************************