Rizla:
Hi
I appear to have created an error with the display of one of the many attributes I have.... Only just noticed.
From the image does anyone know where I should be looking....? It's only on the one field but that field runs through a few products. I would like to correct the code rather that start over.
That is an indication of missing a definition for the applicable text. The definition is typically in a file associated with the product type (if using a product type that is not part of the ZC core files, then that definition should be added to the applicable language file.) So for example the default product type has that defined in the below file:
includes/languages/english/product_info.php
Changes if they are going to be made should be in:
includes/languages/english/YOUR_TEMPLATE/product_info.php
Whiich would be a copy of the file from above. Then inside the new file have/make a definition similar to those of the default zc products. If the desire is to not include a symbol, then the define should still be something like:
define('CONSTANT','');
Where '' is two single quotes. CONSTANT is whichever of the above lines of text that you see, but need to replace with whatever is defined above.