skur2000 Posted August 17, 2017 Share Posted August 17, 2017 Приветы. помогите разобраться, стандартный модуль престы 1.6, Homefutured сейчас товары выводятся по принципу - последние добавленные - уходят в самый низ страницы. а ранее - получается наверху. нужно сделать вывод товаров по принципу - последние добавленные - идут сверху, ранее добавленные - ниже. за вывод судя по всему отвечает вот этот кусок кода , в /modules/homefeatured/views/templates/hook <li class="ajax_block_product col-xs-12 col-sm-3 item1 {if $smarty.foreach.homeFeaturedProducts.first}first_item{elseif $smarty.foreach.homeFeaturedProducts.last}last_item{else}item1{/if} {if $smarty.foreach.homeFeaturedProducts.iteration%$nbItemsPerLine == 0}last_item_of_line{elseif $smarty.foreach.homeFeaturedProducts.iteration%$nbItemsPerLine == 1} {/if} {if $smarty.foreach.homeFeaturedProducts.iteration > ($smarty.foreach.homeFeaturedProducts.total - $totModulo)}last_line{/if}"> Link to comment Share on other sites More sharing options...
wagood Posted August 17, 2017 Share Posted August 17, 2017 Файл modules/homefeatured/homefeatured.php Там не по дате а по позиции в каталоге сортировка по-умолчанию. надо поменять вместо 'position' в этой строке HomeFeatured::$cache_products = $category->getProducts((int)Context::getContext()->language->id, 1, ($nb ? $nb : 8), 'position'); 'date_add' , 'DESC' HomeFeatured::$cache_products = $category->getProducts((int)Context::getContext()->language->id, 1, ($nb ? $nb : 8), 'date_add' , 'DESC'); Link to comment Share on other sites More sharing options...
skur2000 Posted August 17, 2017 Author Share Posted August 17, 2017 ок, пошел пробовать -) Link to comment Share on other sites More sharing options...
skur2000 Posted August 17, 2017 Author Share Posted August 17, 2017 Да !, то что нужно, спасиб. 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