Hi,
I would like to ask for something that is bugging me since the early versions of this module. Accordingly that I've installed it and it works great, when You set attributes on a item with both retail and wholesale values even if a Wholesaler customer log, in the Product page he will see the attributes with the "(+€X.XX) showing always the RETAIL value. For instance lets make an example, I have an item with a base price of €5.00 (wholesale €2.50) with 2 attributes (let say 2 size, small and big), the first add nothing more, just the base price, the "Big" will add €6.00 (wholesale €3.00). So we should see something like:
Retail
Wholesale (should be)
Unfortunately actually it show always the first, ignoring the wholesale values for attributes.
I'm trying to find a solution, actully I'm working on modifying the file ...includes/modules/Your_template/attributes.php and precisely the following lines:
// normal price
if ($new_attributes_price == 0) {
$products_options_display_price= '';
} else {
$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;
The last 2 lines control what is shown after the Attribute name and should shown or the retail value or the wholesale depending if the customers has that status (and is logged ofcourse).
As soon as I will make any progression i'll post it, if someone better than me at php would like to help pls just ######## in :D