If you have a double quote ( " ) in your Product Name, then the generated image tag will be broken for that product due to the alt="..." being prematurely ended by the quote.
Problem is in the Standard Product Image layout (and presumably in other image layouts).
Reason: 8.0.4 used alt="<actinic:variable name="ProductName"/>"
which escaped double quotes into &#34; which worked fine
(but displayed the markup of any embedded HTML in the product name as part of the Alt tooltip).
However 8.5.0 uses alt="<actinic:variable name="ProductName" encoding="strip"/>"
where encoding="strip" removes any HTML tags but leaves the single quote unaltered.
Workaround: Unless you use HTML in your product descriptions remove the encoding="strip" part.
Suggested fix: Alter Actinic so encoding="strip" also replaces " with &#34;
Problem is in the Standard Product Image layout (and presumably in other image layouts).
Reason: 8.0.4 used alt="<actinic:variable name="ProductName"/>"
which escaped double quotes into &#34; which worked fine
(but displayed the markup of any embedded HTML in the product name as part of the Alt tooltip).
However 8.5.0 uses alt="<actinic:variable name="ProductName" encoding="strip"/>"
where encoding="strip" removes any HTML tags but leaves the single quote unaltered.
Workaround: Unless you use HTML in your product descriptions remove the encoding="strip" part.
Suggested fix: Alter Actinic so encoding="strip" also replaces " with &#34;
Comment