摘要:一产品信息先判定是否为产品页面获取产品的,根据得到产品对象通过获取产品对象产品的信息产品库存将产品加入购物车注如果产品购买时需要选择下拉框时,该将进入产品详情页,否则直接就如购物车。
一、产品信息 1、先判定是否为产品页面 if (Mage::registry(‘product’)){ } 2、获取产品的Id,根据Id得到产品对象 通过sku获取产品对象: $_product = Mage::getModel("catalog/product")->loadByAttribute("sku",$sku); $product_id = Mage::registry(‘current_product’)->getId(); $_product = Mage::getModel(‘catalog/product’)->load($product_id); 3、产品的信息 产品库存 $qtyStock = Mage::getModel("cataloginventory/stock_item")->getConllection() ->addfiledtofilter("product_id",$_product->getId()); echo $_product->getShortDescription(); //product’s short description echo $_product->getDescription(); // product’s long description echo $_product->getName(); //product name echo $_product->getPrice(); //product’s regular Price echo $_product->getSpecialPrice(); //product’s special Price echo $_product->getProductUrl(); //product url echo $_product->getImageUrl(); //product’s image url echo $_product->getSmallImageUrl(); //product’s small image url echo $_product->getThumbnailUrl(); //product’s thumbnail image url 4、将产品加入购物车: $this->getAddToCartUrl($_product) ; 注:如果产品购买时需要选择options下拉框时,该url将进入产品详情页,否则直接就如购物车。 5、在前台显示产品的自定义属性: $_product->getResource()->getAttribute("code")->getFrontend()->getValue($_product) code为属性创建时的code 二、用户订单 1、全部订单 $_customer= Mage::getModel("customer/customer"); $_customer->loadByEmail("用户登录邮箱"); // get the customers last order $orders = Mage::getResourceModel("sales/order_collection") ->addFieldToSelect("*") ->addFieldToFilter("customer_id",$_customer->getId()); ->addAttributeToSort("created_at","DESC"); foreach($ordersas $order) { echo$order->getId().""; } 2、最后一个订单 $_customer = Mage::getModel("customer/customer"); $_customer->loadByEmail("用户登录邮箱"); $orders = Mage::getResourceModel("sales/order_collection") ->addFieldToSelect("*") ->addFieldToFilter("customer_id", $_customer->getId()) ->addAttributeToSort("created_at", "DESC") ->setPageSize(1); echo $orders->getFirstItem()->getId();
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/30336.html
1、在Girid.php添加: $this->addColumn(image,array( header => Mage::helper(employee)->__(Image), align => center, index => image,/*数据库中存储图片的字段名称*/ renderer => Nam...
摘要:本次要做的就是,撰写一个模块,让该模块跑完整个的流程。创建模型,需要启用模型,启用资源模型,在资源模型中添加实体,再为资源模型设置读写适配器。 很多时候,不知道Magento模块到底该怎么写,比如ThinkPHP,YII框架,它是直接将控制器Controller中的所取得相关数据直接传递到视图层View,而Magento虽然也是MVC三层,但是在中间多了布局对象Layout与区块Blo...
摘要:的版本中如何开启调试模式呢在前面,写了一篇有关如何开启调试模式来显示前台的路径信息,便于在学习的时候,能快速的找到各个对应的文件。但是,现在这个项目用的,在的版本中如何开启调试模式呢两种方法供参考方法一通过后台控制台来操作,选择也选择。 magento1.x的版本中如何开启调试模式呢? 在前面,写了一篇有关Magento2.0如何开启调试模式来显示前台的路径信息,便于在学习magent...
摘要:版本中,安装插件,有两种方式可以安装插件,程序员最常用的方法就是将开发的插件模块文件直接从上传到对应目录即可。等到显示就是安装完成此时就可以去你的后台,来操作你刚刚装的插件模块了 Magento1.X版本中,安装插件,有两种方式可以安装插件,程序员最常用的方法就是将开发的插件模块文件直接从FTP上传到对应目录即可。而对于新手或不懂程序的人来说,此方法就有些晦涩难懂了(参见另一片文章)。...
阅读 824·2019-08-30 14:05
阅读 1713·2019-08-30 11:08
阅读 3218·2019-08-29 15:41
阅读 3592·2019-08-23 18:31
阅读 1511·2019-08-23 18:29
阅读 548·2019-08-23 14:51
阅读 2104·2019-08-23 13:53
阅读 2128·2019-08-23 13:02