ttkeino Posted February 14, 2018 Share Posted February 14, 2018 Доброго времени суток. Возникла такая необходимость вывести на главную категории товаров вместо рекомендуемых. что-то вроде http://webnewbie.ru/platnye-moduli-prestashop/340-1.html , но, конечно, хотелось бы бесплатно или же если имется какой-то лайфхак. Заранее всем спасибо Link to comment Share on other sites More sharing options...
ttkeino Posted February 14, 2018 Author Share Posted February 14, 2018 1 hour ago, ndiaga said: Смотрите тут : https://www.prestashop.com/forums/topic/633669-category-slider-all-categories-slider/ Спасибо, если не против, то еще один вопрос: вывел я категории, да , я все хорошо, но хотелось бы , что бы не было вот таких рамок. Растянуть по div я растяну, но вот как сделать, чтообы рамка белая не добавлялась. Я вроде понимаю, что это в настройках изображения, однако непонятно, как там настроить. Link to comment Share on other sites More sharing options...
ttkeino Posted February 16, 2018 Author Share Posted February 16, 2018 On 14.02.2018 at 4:25 PM, ndiaga said: Это надо css адаптировать и.т.д а вот допустим мне при покупке товара выбирать не один размер , а не сколько. Как это можно реализовать? При этом желательно, чтобы для каждого размера был свой edit для кол-ва. Link to comment Share on other sites More sharing options...
ttkeino Posted February 19, 2018 Author Share Posted February 19, 2018 Я понимаю, но как-то инфы нет, а нужно сделать. Я уже смог вывести checkbox-ы, но проблема в том, что добавляет товар только последний выбранный checkbox. Копаюсь в файлах AttributeGroup.php private $groupTypeAvailable = array( 'select', 'checkbox', 'color', ); Далее AdminAttributesController.php $group_type = array( array( 'id' => 'select', 'name' => $this->trans('Drop-down list', array(), 'Admin.Global') ), array( 'id' => 'checkbox', 'name' => $this->trans('Radio buttons', array(), 'Admin.Global') ), array( 'id' => 'color', 'name' => $this->trans('Color or texture', array(), 'Admin.Catalog.Feature') ), ); и в product-variants.tpl {elseif $group.group_type == 'checkbox'} <ul id="group_{$id_attribute_group}"> {foreach from=$group.attributes key=id_attribute item=group_attribute} <li class="input-container float-xs-left"> <label> <input class="" type="checkbox" data-product-attribute="{$id_attribute_group}" name="group[{$id_attribute_group}]" value="{$id_attribute}"> <span class="radio-label">{$group_attribute.name}</span> </label> </li> {/foreach} </ul> {/if} На данный я могу выбирать несколько checkbox-ов, но в корзину добавляется последний выбранный. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now