Hi,
are there any plans to upgrade the Magento Themes to Magento 1.4.2. because there a lot of changes in the checkout/cart/Wishlist part of Magento ?
Regards
Gummmel
3 answers
Hi Gummel!
Magento 1.4.2 was released on December 8th, 2010 with some new features and changes. We’re checking and fix for all templates compatibly to the latest version. We’ll release new versions soon.
Regards!
Hi,
are there any news, when will you start to update to Magento 1.4.2 ?
Thank you
Dear Gummel!
We’re updating our templates and will release them as soon as possible. When updating our template from Magento 1.4.1 to Magento 1.4.2 you will see this error:
a:5:{i:0;s:69:"Invalid method Mage_Wishlist_Block_Links::addWishlistLink(Array
(
)
)";i:1;s:2313:"#0 [internal function]: Varien_Object->__call(‘addWishlistLink’, Array)
This error is caused by a change in the way the Wishlist is set up. Fortunately, the fix is very simple:
The Fix:
1. Open the file /app/design/frontend/default/your-theme/layout/wishlist.xml
2. Find this:
<reference name="top.links">
<block type="wishlist/links" name="wishlist_link">
<action method="addWishlistLink"></action>
</block>
</reference>
3. Replace that code with this:
<reference name="top.links">
<block type="wishlist/links" name="wishlist_link"/>
<action method="addLinkBlock"><blockName>wishlist_link</blockName></action>
</reference>
4. Save and upload the file, then refresh Magento’s cache via System > Cache Management
Hope this helps and good luck.