Just upgrading a massive site to Magento 1.9, and I’ve encountered two particularly odd problems.
- Cart rules are broken – such that discount rules will only apply to the first product in your cart. What the hell man, right? Luckily, Hussey Coding have written a fix here.
- For whatever mad reason, the directory /code/core/Mage/GoogleCheckout should actually be called /code/core/Mage/Googlecheckout, otherwise the compiler does not work.
For that last one, a small fix that I did was to add a class alias at the bottom of /app/code/core/Mage/GoogleCheckout/Helper/Data.php
1 |
class_alias ('Mage_GoogleCheckout_Helper_Data', 'Mage_Googlecheckout_Helper_Data'); |
Thought I’d share those with everyone just in case you run across these issues.