lankeeyankee
Sweet! But before I make any changes I want to make sure I have the correct line - mine seems to have more than you quoted, but I'm just being meticulous....
On line 158:
$products_options_display_price= ATTRIBUTES_PRICE_DELIMITER_PREFIX . $products_options->fields['price_prefix'] .
$currencies->display_price($new_attributes_price, zen_get_tax_rate($product_info->fields['products_tax_class_id'])) . ATTRIBUTES_PRICE_DELIMITER_SUFFIX;
You're saying to change that to:
$products_options_display_price= ' <span class="attributesPricePrefix">(' . $products_options->fields['price_prefix'] .
$currencies->display_price($new_attributes_price, zen_get_tax_rate($product_info->fields['products_tax_class_id'])) . ') </span>';
Seeing your <span></span> tag tells me that will work...if that's the correct line I showed above for you.
The reason I ask is because I know that the single quote is very important in the php code. Where you have '(' seems to be replaced with ATTRIBUTES_PRICE_DELIMITER_PREFIX .
The code, line 158, is found after the //normal price
Is that right? After, of course, the 'if' and 'else' statements.
In the end, I should have:
$products_options_display_price= <span class="attributesPricePrefix">ATTRIBUTES_PRICE_DELIMITER_PREFIX . $products_options->fields['price_prefix'] .
$currencies->display_price($new_attributes_price, zen_get_tax_rate($product_info->fields['products_tax_class_id'])) . ATTRIBUTES_PRICE_DELIMITER_SUFFIX</span>;
But I'm missing the single quotes before the opening span and after the closing span tags. I'm going to try it like that and will check back here to see if you agreed or have another suggestion.
Thanks for the fix...