Убрать блок выбора кол-ва товара (ВМ 2)

Discussion in 'Регистрация, покупка, управление заказами' started by ustmm, Feb 23, 2013.

  1. Offline

    ustmm Пользователь

    Joined:
    Jul 26, 2012
    Messages:
    121
    Likes Received:
    1
    Gender:
    Male
    Нужно убрать блок - окно с вводом кол-ва товара и стрелки.
    Код находится в default_addtocart.php

    Код (PHP):
    1. <span class="quantity-box">
    2.         <input type="text" class="quantity-input js-recalculate" name="quantity[]" value="<?php if (isset($this->product->min_order_level) && (int)$this->product->min_order_level > 0) {
    3.             echo $this->product->min_order_level;
    4.         } else {
    5.             echo '1';
    6.         } ?>"/>
    7.         </span>
    8.                 <span class="quantity-controls js-recalculate">
    9.         <input type="button" class="quantity-controls quantity-plus"/>
    10.         <input type="button" class="quantity-controls quantity-minus"/>
    11.         </span>


    Плюс-минус - понятно, но не могу убрать поле ввода кол-ва.
    Точнее, если убрать, пропадает корзина.
    Подскажите как сделать?
     
  2.  
  3. Offline

    ustmm Пользователь

    Joined:
    Jul 26, 2012
    Messages:
    121
    Likes Received:
    1
    Gender:
    Male
    Решено.
    Вместо input type="text" пишем input type="hidden" :)
     

Share This Page

Loading...