获得magento指定customer 购买的产品信息,如果是configurable的,则取configurable的名字。 $orderedProductsForCustomerData = array(); $orderTable =Mage::getSingleton(core/resource)-getTableName(sales/order); $orderItemTab...
在Magento中不同的商店获取被重写后的产品网址
如果当在Magento你想要获取的产品已经被重写那么将很麻烦。我想到一个返回被重写产品网址的方法。你将需要添加一个店铺的基本网址来返回一个完整网址的值。 要注意的是:这个方...
安装完Magento2之后,ICON不见了怎么办?
您有没有这样子的困扰,在安装完Magento2 及sample date之后,兴冲冲地开启Magento2 的页面、确发现版面似乎有点奇怪。少了Logo及缩图 解决的方法非常的简单 只要在Magento的根目录执行底下...
将缺货产品放在Magento产品列表后面
将缺货产品放在Magento产品列表后面,Rewrite Mage_Catalog_Model_Layer 加入入以下代码: ?php class Rayfox_Catalog_Model_Layer extends Mage_Catalog_Model_Layer { public function prepareProductCollection($collection) { if (Mag...
Magento2配置多级Redis缓存及Memcached存储Session机制
Magento2配置多级Redis缓存及Memcached存储Session机制 首选可安装Remi,Remi repository 是包含最新版本 PHP 和 MySQL 包的 Linux 源,由 Remi 提供维护。有个这个源之后,使用 YUM 安装或更新 PHP、MyS...
Magento2建立中文翻译语言包
今天要教大家在Magento2 系统中建立中文翻译的语言包 我们要在系统上开始建立语言包,首先先确认 /app/i18n/ 文件夹是否存在?若不存在就请建立此文件夹 接着建立文件夹 /app/i18n/[Vend...
Magento让后台数据列表中的action列链接在新窗口打开
Magento让后台数据列表中的action列链接在新窗口打开 。 actions = array( array( caption = Mage::helper(productfaq)-__(Edit), url = array( base=*/*/edit, ), field = id, target =_blank ) ),...
Magento中通过访问Url把产品加入购物车
Magento中可以通过访问Url把产品加入购物车。 1 添加简单产品(Simple Product) (1) 通过产品id checkout/cart/add?product=[id]qty=[qty] (2) 通过产品sku $cProd = Mage::getModel(catalog/product); $id = $cProd-getIdBySku(...
Magento中添加带有选项的属性
Magento下面的代码为Customer实体添加了性别属性,有两个可选值 Male和Female。 $installer-startSetup(); $installer-addAttribute(customer, gender, array( label = Gender, visible = true, required = false, type = int, input...
Magento获得后台当前用户的信息
Magento获得后台当前用户的信息,注意,只在后台相应的类中有效,前台经测试无法获得。 $admin = Mage::getSingleton(admin/session)-getUser(); if($admin){ return $admin-getId(); }...