magento中在购物车图标鼠标放上后可显示购物车中商品列表的代码

1,873 人次阅读
没有评论

共计 908 个字符,预计需要花费 3 分钟才能阅读完成。

magento中在购物车图标鼠标放上后可显示购物车中商品列表的代码,如下图所示:

magento中在购物车图标鼠标放上后可显示购物车中商品列表的代码

打包代码如下:

购物车图标鼠标放上后可显示购物车中商品列表的代码

布局xml中的引用语法如下:

<default>
             <reference name="header">
            <block type="checkout/cart_sidebar" name="cart_top" template="checkout/cart/topcart.phtml">
                <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>

在头部代码中的调用

正文完
 0