最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > Magento > Magento教程 >
  • [Magento教程] magento “Model collection resource name is not defined” 错误 日期:2014-06-22 01:41:11 点击:174 好评:0

    问题出现于使用Grid时,解决方案。在使用的Model处添加 public function _construct() { parent :: _construct(); $this -_init(employee/employee ); } 其中init内的数值由下面的函数决定 protected function _prepareCo...

  • [Magento教程] magento 用程序生成优惠劵码 日期:2014-06-22 01:40:27 点击:128 好评:0

    上面的代码只能生成Coupon Code,却不能使用,需加入 $coupon - setType (Mage_SalesRule_Helper_Coupon::COUPON_TYPE_SPECIFIC_AUTOGENERAT​ED)-save(); 整合后可以使用的代码如下: // Get the rule id $rule = Mage::getMod...

  • [Magento教程] magento controller直接渲染Block 以及传参 日期:2014-06-22 01:39:58 点击:228 好评:4

    class Jago_Deal_IndexController extends Mage_Core_Controller_Front_Action{ public function ajaxAction() { $block = $this -getLayout()-createBlock(deal/list)-setTemplate(persistent/customer/form/login.phtml ); $this -getResponse()-setBody( $...

  • [Magento教程] Magento输入正确的登陆名和密码无法进入后台 日期:2014-06-22 01:38:57 点击:129 好评:0

    请找到 这个文件夹: app\code\core\Mage\Core\Model\Session\Abstract 然后修改Varien.php这个文件: 找到代码(大约88行): $cookieParams = array( lifetime = $cookie-getLifetime(), path = $cookie-getPath(), domain = $...

  • [Magento教程] magento getUrl函数跳转admin模块问题 日期:2014-06-22 01:38:15 点击:148 好评:0

    在用以下代码时,跳转后的url里面会是空的,即没有admin这个值 $this -getUrl(admin/catalog_product/edit, array (id = $customerId )); 解决方案,将admin改成adminhtml return $this -getUrl(adminhtml/catalog_product/...

  • [Magento教程] 让Magento后台可以看到订单产品图片 日期:2014-06-21 13:15:59 点击:191 好评:0

    简单修改下代码可以实现Magento后台订单显示产品图片,这样可以方便查找产品。 1.打开 app\design\adminhtml\default\default\template\sales\order\view\items.phtml进行编辑,大概45行处找到以下代码: t...

  • [Magento教程] magento URL大小写404解决 日期:2014-06-21 13:15:27 点击:162 好评:-2

    默认地址是: http://www.google.com/abc.html 现在要求: http://www.google.com/ABC.html ,也能访问。 在这种情况下Magento默认是不支持的。那怎么办? 首先找到:app/code/core/Mage/Core/Model/Resource/Url/R...

  • [Magento教程] magento批量改价命令 日期:2014-06-21 13:15:00 点击:177 好评:0

    UPDATE catalog_product_entity_decimalset value=value-0.3 where attribute_id=68 update catalog_product_index_price set price=price , final_price=final_price-0.3 , min_price=min_price-0.3 , max_price=max_price-0.3 UPDATE catalog_product_index...

  • [Magento教程] magento 找不到”Place Order”按钮问题 日期:2014-06-21 13:14:22 点击:204 好评:0

    1) 打开该主题下的布局文件checkout.xml 2)搜索One page checkout order review block,在checkout_onepage_review translate=label这里加上 block type=core/template name=checkout.onepage.review.button as=button template=checkout/...

  • [Magento教程] magento更新购物车产品数量 日期:2014-06-21 13:13:38 点击:171 好评:4

    1、向购物车中添加产品 [php] view plaincopy $params = array (); $product =Mage::getModel( catalog/product )-load( $productid ); $params [ qty ]=1; $cart =Mage::getSingleton( checkout/cart ); $cart -addProduct( $product , $params );...

栏目列表
推荐内容