Well I was thinking these specific features were more in lines with what you were inquiring about.. (since Dual Pricing does not offer similar features -- never has)
Anyway.. perhaps someone will come along and explain how to add similar features to Dual Pricing..5.) Prevent group discounts from being given on products already on sale or special at a
higher discount. If the group discount price is lower than the sale or special price,
products will be offered at the group discount price.
6.) Prevent discounts of any kind being issued on gift certificates.
My Site - Zen Cart & WordPress integration specialist
I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.
Yes I do understand the difference between the two apps..
My client opted to change the way she configured/managed her wholesale products so that she could use the other mod because the discounting of wholesale prices was a huge deal breaker for her.. But hey.. different strokes and all right??
Anyway, hopefully someone will come along and explain how to make this same kind of feature work with Dual Pricing..
My Site - Zen Cart & WordPress integration specialist
I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.
I've finally got dual pricing and hidden wholesale up and running together. (Thanks Leonard!) I'm still not able to get the wholesale prices to work with attributes but I really don't need them to right now. The problem I'm having is that the sub-total is not showing the correct sub-total. If anything in the cart isn't part of the duel pricing scheme, it doesn't add to the subtotal. However, the correct total is displayed in the final cart screen during checkout so orders are not affected.
If anyone has an idea how to repair the sub-total total field, I am very interested. However I would also not be opposed to eliminating the field altogether. I have found the title fields and can clear them out but I can't find the file where the sub-total field is pushed to the screen. Any assistance would be greatly appreciated.
You might wanna check your old post...Probably just until you find a proper fix for what you need.
I've been struggling a bit in an attempt to get Dual Pricing 1.8 & Hidden Wholesale to work on ZC 1.3.9h - it was all working apart from not showing wholesale prices for attributes.
Searching this thread turned up a few people with this problem, but no solutions.
But I think I have found the problem.
At about line 1390 of includes/functions/functions_prices.php change
toCode:if ($pre_selected->fields["price_prefix"] == '-') { $attributes_price_final -= $pre_selected->fields["options_values_price"]; } else { $attributes_price_final += $pre_selected->fields["options_values_price"]; } // qty discounts
Well, it worked for me. Hope it helps others.Code:if ($pre_selected->fields["price_prefix"] == '-') { $attributes_price_final -= $options_values_price; } else { $attributes_price_final += $options_values_price; } // qty discounts
Iain
Hmm. It only worked up to a point. The right price is now shown for attributes, but when the item is added to the cart, the full price is shown. Anyone have any suggestions how to sort that out? Does the cart get its price from somewhere else?
Sorted it - took me since the last message to find the problem, fix and test.
The problem was in the includes/classes/shopping_cart.php file
Bookmarks