daramal Posted May 24, 2012 Report Share Posted May 24, 2012 Возможно ли сделать контроль над Новинками, как например в Админке - "Рекомендуемые" и "Со скидкой"?Ну что бы назначить нужный товар в данный список, а отображать также как и раньше на главной.Буду рад любой инфой!Спасибо! Quote Link to post Share on other sites
igoryk Posted May 24, 2012 Report Share Posted May 24, 2012 Поддерживаю, тоже нужет такой функционал Quote Link to post Share on other sites
Noxter Posted May 24, 2012 Report Share Posted May 24, 2012 Я такой функционал реализовал. Выбираем дату поступления и балдеем что можем это контролировать=) Quote Link to post Share on other sites
wspirit Posted May 24, 2012 Report Share Posted May 24, 2012 бугагашенька Quote Link to post Share on other sites
daramal Posted May 24, 2012 Author Report Share Posted May 24, 2012 Noxter , подскажите как это сделать? Quote Link to post Share on other sites
wspirit Posted May 24, 2012 Report Share Posted May 24, 2012 в базе данных есть таблица продуктс. там есть поле created. вот его нужно вывести в форму продукта в админке. всё Quote Link to post Share on other sites
EleGant Posted May 24, 2012 Report Share Posted May 24, 2012 Типа чек боксом? Quote Link to post Share on other sites
daramal Posted May 25, 2012 Author Report Share Posted May 25, 2012 wspirit , опишите, плиз данное действие. Quote Link to post Share on other sites
Noxter Posted May 25, 2012 Report Share Posted May 25, 2012 20$ опишу и сделаю=) Quote Link to post Share on other sites
daramal Posted May 25, 2012 Author Report Share Posted May 25, 2012 10$ только опиши, сам сделаю! Quote Link to post Share on other sites
Noxter Posted May 25, 2012 Report Share Posted May 25, 2012 Ок вечером. Quote Link to post Share on other sites
daramal Posted May 25, 2012 Author Report Share Posted May 25, 2012 Noxter опять пропал (( Есть кто знает, как это реализовать? Нужно сделать как с "Рекомендуемые". Quote Link to post Share on other sites
Noxter Posted May 26, 2012 Report Share Posted May 26, 2012 Сделал контроль новинок=) Quote Link to post Share on other sites
daramal Posted May 26, 2012 Author Report Share Posted May 26, 2012 а нельзя сделать по типу "Рекомендуемые" ? т.е. чекбоксом Quote Link to post Share on other sites
Noxter Posted May 26, 2012 Report Share Posted May 26, 2012 Можно, но придется все переделать что связанно с новинками, а это объемная работа. Quote Link to post Share on other sites
daramal Posted May 26, 2012 Author Report Share Posted May 26, 2012 Давай тогда то что есть. написал в личку Quote Link to post Share on other sites
Mnqn Posted October 28, 2013 Report Share Posted October 28, 2013 Фух, запилил методом научного тыка. По сути, надо поиском по всем файлам искать строки "featured" и делать дубликаты со своим названием, например "novinki". Ну и конечно же создать дополнительное строку в базе данных. Мучался часа 2. Quote Link to post Share on other sites
Den Posted October 29, 2013 Report Share Posted October 29, 2013 У меня так: В админке указано сколько дней с момента добавления товара считать его новинкой. На сайте это время красуется значек. Quote Link to post Share on other sites
mart Posted October 29, 2013 Report Share Posted October 29, 2013 http://www.simplashop.com/article/simpla-21-dopolnitelnye-chekboksy-v-tovare Quote Link to post Share on other sites
chubr Posted March 1, 2014 Report Share Posted March 1, 2014 Сделал контроль новинок=) А можно сделать, чтобы дата проставлялась автоматом, при выгрузке из 1С? Насколько сложно? Quote Link to post Share on other sites
chubr Posted March 3, 2014 Report Share Posted March 3, 2014 Должно быть довольно просто. В соответствующем месте при создании нового товара добавить значение поля.Примерно так: $product_id = $simpla->products->add_product(array('external_id'=>$product_1c_id, 'url'=>translit($xml_product->Наименование), 'name'=>$xml_product->Наименование, 'meta_title'=>$xml_product->Наименование, 'meta_keywords'=>$xml_product->Наименование, 'meta_description'=>$xml_product->$description, 'annotation'=>$description, 'body'=>$description, 'created'=>'NOW()' )); А чтобы это было не при создании, а когда кол-во увеличивается? Просто часто ситуация, что товары закончились, а потом вновь пришли в новом поступлении. Quote Link to post Share on other sites
SV911 Posted November 7, 2014 Report Share Posted November 7, 2014 Удалите пост. Уже сам во всем разобрался. ) Quote Link to post Share on other sites
daramal Posted October 12, 2015 Author Report Share Posted October 12, 2015 http://www.simplashop.com/article/simpla-21-dopolnitelnye-chekboksy-v-tovareКлассная доработка, только один момент не учтен.Как справа в админке, до "Рекомендуемые" создать ссылку "Новинки", и при клике выводятся все отмеченные новинки каталога?Без нее сложно понять, какой товар отмечен, как Новинка. Подскажите пожалуйста этот момент. Спасибо! Quote Link to post Share on other sites
mishanya Posted October 12, 2015 Report Share Posted October 12, 2015 Классная доработка, только один момент не учтен.Как справа в админке, до "Рекомендуемые" создать ссылку "Новинки", и при клике выводятся все отмеченные новинки каталога?Без нее сложно понять, какой товар отмечен, как Новинка. Подскажите пожалуйста этот момент. Спасибо! в simpla/design/html/products.tpl после <li {if $filter=='featured'}class="selected"{/if}><a href="{url keyword=null brand_id=null category_id=null page=null filter='featured'}">Рекомендуемые</a></li> добавить <li {if $filter=='is_new'}class="selected"{/if}><a href="{url keyword=null brand_id=null category_id=null page=null filter='is_new'}">Новинки</a></li> в simpla/ProductsAdmin.php после if($f == 'featured') $filter['featured'] = 1; добавить elseif($f == 'is_new') $filter['is_new'] = 1; Quote Link to post Share on other sites
daramal Posted October 12, 2015 Author Report Share Posted October 12, 2015 mishanya, ты как всегда на высоте! Спасибо огромное! Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.