Plus and minus for the cart vqmod добавляет кнопочки + - в модуль корзины все работает, но если у товара есть опции, то товар не плюсует Вот этот модуль http://www.opencart.com/index.php?route=extension/extension/info&extension_id=8654
+ - к товару легко сделать без модулей. В product.tpl добавляешь JS-код: <script> $(document).ready(function() { $('.minus').click(function () { var $input = $(this).parent().find('input'); var count = parseInt($input.val()) - 1; count = count < 1 ? 1 : count; $input.val(count); $input.change(); return false; }); $('.plus').click(function () { var $input = $(this).parent().find('input'); $input.val(parseInt($input.val()) + 1); $input.change(); return false; }); }); </script> Затем, обрамляешь input с количеством товара, например так: <a href="#" class="minus"></a> <input id="product_buy_quantity" type="text" name="quantity" size="2" value="<?php echo $minimum; ?>" /> <a href="#" class="plus"></a> А в css классы .minus и .plus оформляешь как нравится. Опять же, например: .minus{ display: table; width: 36px; height: 36px; float: left; background: url(/image/data/minus.png) no-repeat; } .plus{ display: table; width: 36px; height: 36px; float: left; background: url(/image/data/plus.png) no-repeat; margin-left: -5px; } .plus:hover, .minus:hover{ cursor:hand; } Все вышеперечисленное работает вне зависимости от опций товара.