Bug with Magento 1.8.x

Created by Nicole Le, Modified on Mon, 31 Jul 2017 at 09:42 AM by Robin Hoang

Question: 

We set up group price for store view. The problem is, that the group price does not show correctly in detail view and for the shopping cart. However, it does show correctly in list view. 


Answer:

Go to this file: Bss/MultiStoreViewPricing/Model/Observer.php

Find row 68->70:

 // if($product->getFinalPrice() > $old_final_price) { 

    //     $product->setFinalPrice($old_final_price); 

    // }

Change into: 

if($product->getFinalPrice() > $old_final_price) { 

    $product->setFinalPrice($old_final_price); 

    }

For more information about product, please refer Multiple Store View Pricing page.

If you need any further assistance, please feel free to contact us.

Please visit our site for more useful Magento 1 Extensions: https://bsscommerce.com/extensions.html

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select atleast one of the reasons

Feedback sent

We appreciate your effort and will try to fix the article