我正在处理的magento商店有侧边栏推车。它已移至网站的底部。 我已经能够显示页脚中的购物车中有多少项(页脚位于header.phtml中),但是,当您将鼠标悬停在购物车上时,它会告诉您购物车中没有任何内容。我添加了一个使用Ajax将项添加到购物车的扩展程序。当您将项目添加到购物车时,侧边栏购物车然后正常工作,并显示当前在购物车中的产品。但是,当您刷新页面时,这将停止工作并且“购物车中没有任何内容”。关于会导致这种情况的任何想法?
网址
答案 0 :(得分:0)
您好请在checkout.xml上添加此代码
<default>
<reference name="footer">
<block type="checkout/cart_sidebar" name="cart_sidebar_footer" 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>
</default>
调用footer.phtml
<?php echo $this->getChildHtml('cart_sidebar_footer') ?>