Magento
didashui2000
这个作者很懒,什么都没留下…
展开
-
magento常用插件
magento插件插件集锦: 1. 删除订单:BoutikCircus_DeleteOrders URL:http://www.magentocommerce.com/e ... 4562/em_deleteorder 另一个同类插件: URL:http://www.magentocommerce.com/m ... yomind_orderserase转载 2016-06-18 15:04:31 · 1247 阅读 · 0 评论 -
magento 添加离线支付方式
增加类似Check / Money Order 这样的线下支付方式Check1 / Money Order .并且在前台让客户选择,在后台管理订单中也能正确显示客户选择的支付方式。 1、打开app/code/core/Mage/Payment/etc/system.xml,找到……,复制这个标签及其包含的内容,紧接着这个标签粘贴一份,把checkmo改名为checkmo1,Check / Mon转载 2016-06-18 15:15:30 · 218 阅读 · 0 评论 -
magento如何调用静态区块
静态块主要是指在后台添加的可用静态块 调用方法常见的有如下几种:(这边就不介绍使用widgets 调用的方法了,有兴趣的朋友可以自己在后台widgets中尝试设置) 1、直接在HomePage中调用(只限首页): 修改layout中的xml代码 block_id 通过修改reference 中的name属性值调整主体位置,通过block中的before或after属性值调转载 2017-04-18 10:32:01 · 597 阅读 · 0 评论 -
magento获得产品的custom option信息 Getting all custom options of a product
Custom options are the options that can be added to any product, which gives an option for the user of the site to select what type of product they actually want. Here is a scenario where custom optio转载 2017-04-20 16:26:19 · 380 阅读 · 0 评论 -
magento批量修改价格
<?php require_once 'app/Mage.php'; //echo phpinfo();exit; set_time_limit(0); Mage::app('default'); $read = Mage::getSingleton('core/resource')->getConnection('core_read'); $row = $read->fetchAll转载 2017-05-12 14:35:12 · 1118 阅读 · 0 评论 -
magento脚本打印错误
error_reporting(E_ALL); ini_set('display_errors', '1');转载 2017-05-12 15:13:15 · 198 阅读 · 0 评论 -
magento代码调用分类页产品
public function getproductAction(){ $page = (int) $this->getRequest()->getParam('page', false); $catid = (int) $this->getRequest()->getParam('catid', false); $pagesize = 10; $category = Mage::转载 2017-05-17 10:06:54 · 567 阅读 · 0 评论