ATTRIBUTES_PRICE_DELIMITER_PREFIX
ATTRIBUTES_PRICE_DELIMITER_SUFFIX
"PRODUCT Attribute Price Prefix - Default" option has been left out of the admin setup list by the looks of it,
but a quick fix might be to define them in a 'defines' file instead
try inserting these 2 entries below, into \languages\english\extra_definitions\product_book.php which is one of the defines files for the book product, the file is in the book fileset. These 2 were copied from the entries for other zc product types, and you can change the second part of each define entry
, ' )'); displays a )
, 'xyz'); displays xyz
Code:
define('ATTRIBUTES_PRICE_DELIMITER_SUFFIX', ' )');
define('ATTRIBUTES_PRICE_DELIMITER_PREFIX', ' ( ');
If you've not altered a php file before, a php file has
You insert any extra entries anywhere between those beginning and end lines
don't use notepad or wordpad for editing - google for
'php file edit software'
or get hold of dreamweaver
can't guarantee the fix, haven't got time to try it just now
Bookmarks