How to show cart sidebar in header in magento
add this section in
checkout.xml
app/design/frontend/default/YOURTHEME/layout/checkout.xml
<reference
name="header">
<block
type="checkout/cart_sidebar" name="cart_sidebar"
as="topCart" template="checkout/cart/sidebar.phtml"
before="-">
<action
method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/sidebar/default.phtml</template></action>
<action
method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/sidebar/default.phtml</template></action>
<action
method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/sidebar/default.phtml</template></action>
<block
type="core/text_list" name="cart_sidebar.extra_actions"
as="extra_actions" translate="label"
module="checkout">
<label>Shopping Cart Sidebar Extra Actions</label>
</block>
</block>
</reference>
like this :-
<reference
name="right">
<block
type="checkout/cart_sidebar" name="cart_sidebar"
template="checkout/cart/sidebar.phtml" before="-">
<action
method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/sidebar/default.phtml</template></action>
<action
method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/sidebar/default.phtml</template></action>
<action
method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/sidebar/default.phtml</template></action>
<block
type="core/text_list" name="cart_sidebar.extra_actions"
as="extra_actions" translate="label"
module="checkout">
<label>Shopping Cart Sidebar Extra Actions</label>
</block>
</block>
</reference>
add this line of code
in header.phtml
app/design/frontend/default/fashion/template/page/html/header.phtml
<?php echo
$this->getChildHtml('topCart'); ?>
No comments:
Post a Comment