博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
magento 购物车 首页 显示
阅读量:6830 次
发布时间:2019-06-26

本文共 1136 字,大约阅读时间需要 3 分钟。

如何将购物车显示在你的首页

 

1.复制代码:<!--new block -->

                <block type="checkout/cart_sidebar" name="cart_sidebar" as="topcart" template="checkout/cart/sidebar.phtml"/>

带page.xml 文件中(大约69行);效果:

<block type="page/html_header" name="header" as="header">

                <block type="page/template_links" name="top.links" as="topLinks"/>
                <block type="page/switch" name="store_language" as="store_language" template="page/switch/languages.phtml"/>
                <block type="core/text_list" name="top.menu" as="topMenu"/>
                <!--new block -->
                <block type="checkout/cart_sidebar" name="cart_sidebar" as="topcart" template="checkout/cart/sidebar.phtml"/>
                <block type="page/html_wrapper" name="top.container" as="topContainer" translate="label">
                    <label>Page Header</label>
                    <action method="setElementClass"><value>top-container</value></action>
                </block>
            </block>

 

2.header.phtml 在该文件中调用你的购物车信息:

<?php echo $this->getChildHtml('topcart'); ?>

 

3. 可以省略(更新block。到后台 CMS => Manage Pages ,找到首页cms,进入找到Custom Design 选项,在Layout Update XML 里面填写以下代码:<referencename="header">

<actionmethod="unsetChild"><name>cart_sidebar</name></action>
</reference>)

 

4.没得了

转载于:https://www.cnblogs.com/xubangwen/p/4516387.html

你可能感兴趣的文章
创新平台年报统计系统——利益相关者描述案例
查看>>
匹配特定数字串
查看>>
我的垂直居中
查看>>
数值分析Matlab绘制三维数据曲面图
查看>>
将Angular6自己定义的模块发布成npm包
查看>>
编译原理LL1文法Follow集算法实现
查看>>
【iOS-Cocos2d游戏开发之二十一 】自定义精灵类并为你的精灵设置攻击帧以及动画创建!【二】...
查看>>
Python学习笔记—第二章—IPython
查看>>
mariadb常用的客服端及其服务端命令
查看>>
实现文件上传的Action
查看>>
ORACLE 编译/安装bbed工具
查看>>
Centos 6.3 下实现ntp时间服务器
查看>>
nfs nobody,nobody 需要在nfs客户端修改从nfs服务器端共享过来的目录怎么办?
查看>>
Not Registered 终极解决方案
查看>>
拳头公司聊天服务架构:服务器篇
查看>>
Android开发者指南(2) —— aapt
查看>>
SLES的桌面应用
查看>>
mongodb-基础-update-remove
查看>>
云场景实践研究第84期:东润环能
查看>>
面试 -- 数字签名与数字证书
查看>>