|
Answer to question 1.
Open up the checkout.xml file and change:
<reference name="right">
<block type="checkout/cart_sidebar" name="cart_sidebar" before="-" template="checkout/cart/sidebar.phtml"/>
</reference>
to:
<reference name="left">
<block type="checkout/cart_sidebar" name="cart_sidebar" before="-" template="checkout/cart/sidebar.phtml"/>
</reference>
Keep in mind that this change will make the shopping cart block display only in the left column and only if it is available. In other words, there are pages such as the product view pages which only have a right column and thus the shopping cart block would not display.
Now to question 2.
Open up the poll.xml and just before “</default>” at the top, insert the following:
<reference name="right">
<block type="core/template" name="left.permanent.callout" template="callouts/left_col.phtml">
<action method="setImgSrc"><src>images/media/col_left_callout.jpg</src></action>
<action method="setImgAlt" translate="alt" module="catalog"><alt>Our customer service is available 24/7. Call us at (800) DEMO-NUMBER.</alt></action>
<action method="setLinkUrl"><url>checkout/cart</url></action>
</block>
</reference>
Now all you have to do is customize the “<action>” tags and upload your image file to the desired direcory and you’re good to go.
Hope this helps. Let me know if it doesn’t.
|