将购物车中的数量字段更改为不可更改

时间:2015-10-25 23:16:21

标签: magento magento-1.9

如何使购物车中商品的数量字段不变。只需显示' 1'但没有更新它。 我试过`

/app/design/frontend/base/default/template/checkout/cart/item/default.phtml 

/app/design/frontend/default/your-theme/template/catalog/product/view/addtocart.phtml

但没有任何反应

2 个答案:

答案 0 :(得分:0)

你可以像下面那样使用数量输入字段的readonly属性。它不会让用户输入数量。

        <input readonly = "readonly" type="text" name="qty" id="qty" maxlength="12" value="<?php echo $this->getProductDefaultQty() * 1 ?>" title="<?php echo $this->__('Qty') ?>" class="input-text qty" />

希望这能解决您的问题。感谢

答案 1 :(得分:0)

将此代码放在产品页面上。如果您的项目中有jquery,它将完成您的工作。

<?php
header('Content-Type: text/html; charset=UTF-8');
require_once dirname(__FILE__) . '/jdatetime.class.php';
$date = new jDateTime(true, true, 'Asia/Tehran');
echo $date->date("l j F Y");
?>