Just installed Magento 1.9.1.1 and see the cart widget in left sidebar in the design "Default->Default" 3 columns. The cart is now in left sidebar. When changing design to 2 columns with right bar, I have no cart. How do I move the cart to right bar ?
Do you move block cart from left to right column in catalog.xml?
@xukadon't copy or edit any of the existing layout XML files. You should create a local.xml file in your template folder.
You can move it with this code:
<?xml version="1.0" encoding="UTF-8"?> <layout> <default> <reference name="left"> <action method="unsetChild"><name>cart_sidebar</name></action> </reference> <reference name="right"> <action method="insert"> <blockName>cart_sidebar</blockName> </action> </reference>
</default>
</layout>
I didn't test the code, but unsetChild and insert are the methods you need.
Thanks. This did the trick.
That's great! Good luck with your webshop.
Also, could you mark this topic as solved?