Привет всем! нужен совет от знающих
Тут выставляется Для группы покупателей минимальная сумма.
Как можно выставить на количество товаров?
И решение для 2.1 подойдет?
Спасибо заранее
open the file: catalog/view/theme/default/template/checkout/confirm.tpl <?php$customer_group_id = $this->customer->getCustomerGroupId();// the customer group id is in phpmyadmin in customer_group// for me 6 is a wholesaler accountif (($this->cart->getSubtotal() < 250) && ($customer_group_id =="6")){ // if the total is < of 250 and the group pricing is wholesaler, then redirect on a new page for example//condition of saleHeader ("Location: http://www.yahoo.com/");} else { //if it's ok, then go whit checkoutecho $payment;} ?>