Hobbes_TheReal Posted July 16, 2005 Share Posted July 16, 2005 Hello, i have installed the QPB per Product all works fine. But in product info the special prices don?t show now, they all in normal price at this. I have download latest updates from the PriceFormatter, but nothing solve this problem. Have anyone a fix for me ??? Or can write, what i have to change and who ? Have a great Day... Hobbes Quote Link to comment Share on other sites More sharing options...
strictlypc Posted July 17, 2005 Share Posted July 17, 2005 Hi Hobbes, The Special prices should work. I think in the original files, they tell you to delete the following: if ($new_price = tep_get_products_special_price($product_info['products_id'])) { $products_price = '<s>' . $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])) . '</span>'; } else { $products_price = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])); } That actually controls the specials pricing. So you would have to add the above code back and before (or above): $pf->loadProduct((int)$HTTP_GET_VARS['products_id'], (int)$languages_id); $products_price=$pf->getPriceString(); Hope this helps, StrictlyPC Quote Link to comment Share on other sites More sharing options...
Hobbes_TheReal Posted July 17, 2005 Author Share Posted July 17, 2005 Hello Striclypc, that i have try many times... before no changes and when i add it after, than special prices will be show, but than the QPB don?t work :( Than i don?t see the QPB table and i have all normal prices at a product. Any solution ?? Greets Hobbes Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.