摘要: 在Magento默认的配置下,HTML输出是从名为“root”的块开始(其实是因为这个块 拥有output属性【EFISH注:任何一个拥有output属性的块都是顶层块,在拥有多个顶层块的情况下Magento将按照块定义的先后顺序输出 HTML】)。我们覆盖了“root”块的模板 template= 阅读全文
posted @ 2017-03-15 17:44 思风雨 阅读(931) 评论(0) 推荐(0) 编辑
摘要: 【注意】任何Linux环境中都可以直接运行以下文件生成公私钥大家可以SSH到自己相应的服务器上,执行以下命令 openssl genrsa -out rsa_private_key.pem 2048openssl rsa -in rsa_private_key.pem -pubout -out rs 阅读全文
posted @ 2017-03-15 17:27 思风雨 阅读(1716) 评论(0) 推荐(0) 编辑
摘要: $quote = Mage::getSingleton('checkout/cart')->getQuote(); 阅读全文
posted @ 2017-03-10 13:55 思风雨 阅读(211) 评论(0) 推荐(0) 编辑
摘要: <div style="overflow: hidden; white-space: nowrap; text-overflow: ellipsis;width:100px;" title="测试">阿打发士大夫的范德萨发发发郭德纲郭德纲嘎嘎嘎</div> 阅读全文
posted @ 2017-03-08 15:28 思风雨 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 网页端调用:$this->getLayout()->createBlock('cms/block')->setBlockId('home_jbcs_daojishi')->toHtml();"home_jbcs_daojishi为静态块的url key"; 后台网页调用静态块:{{block typ 阅读全文
posted @ 2017-03-08 12:02 思风雨 阅读(199) 评论(0) 推荐(0) 编辑
摘要: function validate(num) { var reg = /^\d+(?=\.{0,1}\d+$|$)/ if(reg.test(num)) return true; return false ; } 阅读全文
posted @ 2017-01-16 13:19 思风雨 阅读(17216) 评论(0) 推荐(0) 编辑
摘要: 以文件的形式导入来改变商品的数量 define('MAGENTO', realpath(dirname(__FILE__))); require_once MAGENTO . '/app/Mage.php'; umask(0); Mage::app()->setCurrentStore(Mage_C 阅读全文
posted @ 2017-01-12 19:09 思风雨 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 1.以下是system.xml文件 <config> <sections> <shopcore translate="label" module="shopcore"> <class>separator-top</class> <label>商城/专区设置</label> <tab>sales</t 阅读全文
posted @ 2017-01-12 19:03 思风雨 阅读(252) 评论(0) 推荐(0) 编辑
摘要: Magento产品列表默认每行显示3个产品,有时候我们需要调整这个数目,可以通过如下方法实现: 1)设置产品列表页中一行显示4个产品。 修改模板的layout/catalog.xml文件: <block type="catalog/product_list" name="product_list" 阅读全文
posted @ 2017-01-12 13:28 思风雨 阅读(291) 评论(0) 推荐(0) 编辑
摘要: Mage::helper('coreservice')->getRequestIp()获取IP地址 阅读全文
posted @ 2017-01-12 11:16 思风雨 阅读(141) 评论(0) 推荐(0) 编辑