`
天梯梦
  • 浏览: 13729731 次
  • 性别: Icon_minigender_2
  • 来自: 洛杉矶
社区版块
存档分类
最新评论

Magento: How to add custom qty field to custom option of simple product magento

 
阅读更多

By default in magento there is no qty field of simple product for custom option. If you want to add qty as per your custom option you can add now using this post.

 

Suppose you have custom option 'Color: Red, Blue, White' of your simple product and you want to add different qty option for your color option you can do it now.

Magento: How to add custom qty field to custom option of simple product magento
Magento: How to add custom qty field to custom option of simple product magento

 

1. go to app\design\adminhtml\default\default\template\catalog\product\edit\options\type\select.phtml

 

Find the below code:

'<th class="type-sku"><?php echo Mage::helper('catalog')->__('SKU') ?></th>'+

 

Now add following code just after above code.

'<th class="type-qty"><?php echo Mage::helper('catalog')->__('Qty') ?></th>'+

 

Now add following code just after above code.

'<td><input type="text" class="input-text" name="product[options][{{id}}][values][{{select_id}}][qty]" value="{{qty}}"></td>'+


2. go to app\code\core\Mage\Adminhtml\Block\Catalog\Product\Edit\Tab\Options\Option.php

 

Find the below code:

$value['sku'] = $this->htmlEscape($option->getSku());

 

Now add following code just after above code.

$value['qty'] = $this->htmlEscape($option->getQty());

 

Find the below code:

'sku' => $this->htmlEscape($_value->getSku()),

 

Now add following code just after above code.

'qty' => $this->htmlEscape($_value->getQty()),
 

3. Add field in “catalog_product_option_type_value” table

 
`qty` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Qty',
 
Now clear your cache and check in you magento admin. You can hit below if post is help full for you.
 

 

原文:http://hkpatel201.blogspot.com/2014/03/how-to-add-custom-qty-to-custom-option.html

 

转自:Magento: How to add custom qty field to custom option of simple product magento

 

分享到:
评论

相关推荐

    Magento: 后台添加预览按钮 View product in frontend from Magento admin

    这篇博客“Magento:后台添加预览按钮 View product in frontend from Magento admin”主要探讨了如何通过自定义开发来实现这一功能,让管理员能够快速检查商品在网站前台的显示状态。 在Magento中,通常管理员需要...

    Magento: Beginner's Guide ([Packt]出品 Magento新手指南)

    ### Magento新手指南知识点详解 #### 一、Magento简介与特性 **Magento**是一款功能强大的开源电子商务平台,由Varien公司(后被Adobe收购)于2008年首次发布。它以其灵活性、可扩展性和丰富的功能集而闻名,是...

    The Definitive Guide to Magento (Apress出品 Magento权威指南)

    ### Magento权威指南 #### 书籍概述 《Magento权威指南》是由Adam McCombs与Robert Banh共同编著的一本深入探讨Magento电商平台的技术手册。该书由Apress出版社于2009年出版发行,旨在为读者提供一个全面、系统的...

    m2_belvg_product-tabs-2.0.0.zip

    magento2在产品详情添加自定义tab,1. Enable module with php bin/magento ...General settings will include the following options to configure:....Go to Catalog -&gt; Tab Management menu -&gt; click Add New Tab.

    magento2-integration

    Magento:registered:2数据集成借助Datatric Connect扩展程序,可以轻松地将Magento:registered:2商店与Datatrics平台连接起来。安装在开始安装过程之前,我们建议您对webshop文件以及数据库进行备份。 有两种安装...

    Magento:适用于Dropday的Magento扩展

    通过SFTP或SSH导航到Magento [Magento]/app/code/ 。 上载带有扩展名的Dropday/OrderAutomation目录。 打开终端并导航到Magento根目录。 运行以下命令以启用Dropday扩展: php bin/magento module:enable Dropday_...

    wp_custom_menu-1.2.5.rar_magento_magento custom menu

    标题中的"wp_custom_menu-1.2.5.rar"指的是一个专门为Magento设计的定制菜单插件的版本号为1.2.5的压缩包文件。这个插件允许用户根据自己的需求自定义商店的导航菜单,以提供更好的用户体验和更高效的网站导航。 在...

    python-magento:使用Python API访问magento API

    Magento Python API 用于连接到Magento Web服务的Python库。 用法 import magento url = 'http://domain.com/' apiuser = 'user' apipass = 'password' # Create an instance of API client = magento . API ( url ...

    magento:Magento片段

    Magento是一款开源的电子商务平台,由Adobe公司开发,用于构建高度可定制的在线商店。它基于PHP语言,利用了Zend框架,提供了丰富的功能和强大的性能,让商家能够灵活地管理产品、订单、客户以及营销活动。 在...

    Magento 添加后台管理 addColumn

    "Magento添加后台管理addColumn"这个主题主要涉及的是如何在Magento的后台管理面板自定义添加新的数据列,以展示更多店铺运营的相关信息。这通常涉及到对Magento的MVC(Model-View-Controller)架构的理解,以及对...

    magento:Puglin Magento

    $ cd /path/to/magento $ modgit init $ modgit add epicomtech_magento https://github.com/epicomtech/magento.git Antes deComeçar Epicom的API协议 通过电子邮件联系API,电子邮件地址: Conhecendo omó...

    Magento 2 Cookbook

    Chapter 2, Magento 2 System Tools, explains how to install Magento 2 via the command shell. Magento released a new powerful tool to manage and install sample data, reindex your database, back up your ...

    Magento2 CookBook

    What this book covers Chapter 1, Installing Magento 2 on Apache and NGINX, is a ... It also includes how to add unit/functional tests as this is a new requirement for extensions listed on the new Magento

    ansible-magento:ansible置备的magento商店

    ansible-magento要求: -流浪汉-可以指示: 克隆此仓库无所事事在浏览器中导航到magento.dev。MySQL 数据库:magento 用户名:magento 密码:password123 这是基于的工作而进行的一些更改,以简化启动和运行过程...

    docker-magento:Mark Shust的Magento Docker配置

    docker-magento:Mark Shust的Magento Docker配置

    magento:Magento的免费PWA和SPA

    VueFrontCMS Connect App for Magento 显示你的 :red_heart: -给我们一个 :star: 帮助我们将这个项目发展到最好! VueFront是CMS不可知的SPA和PWA前端,适用于您的老式Blog和电子商务网站。 Magento通过最佳的电子...

    Magento电子书:Inchoo's Magento Posts

    # Add output compression to speed page loading #BrowserMatch ^Mozilla/4 gzip-only-text/html #BrowserMatch ^Mozilla/4\.0[678] no-gzip #BrowserMatch \bMSIE !no-gzip !gzip-only-text/html #...

    Ajax-Magento-ajax-add-to-cart.zip

    Ajax-Magento-ajax-add-to-cart.zip,[模块magento 1]magento ajax添加到购物车-ajoter vos produits au panier en ajax/感谢ajax将您的产品添加到购物车,ajax代表异步javascript和xml。它是多种web技术的集合,包括...

    Magento 2 Beginners Guide

    You’ll start by getting a general understanding of what Magento is, why and how you should use it, and whether it is possible and feasible to migrate from an old web store to Magento 2. As you work ...

    magento:magento 项目

    马恩托 magento 项目

Global site tag (gtag.js) - Google Analytics