Jump to content

Помогите! Нужна рандомность хитов


Recommended Posts

Извините, может тема поднималась но что то не смог найти. Как сделать рандомность хитов продукции на главной? Хотя бы подскажите в каком направлении двигаться. с версткой проблем нет а вот программирование на начальном уровне пока :)

Link to post
Share on other sites

В файле Storefront.class.php примерно на строке 451 в методе get_products находите строку
$hit_filter = is_null($hit)?"":"AND products.hit = $hit";
И заменяете ее на
if(is_null($hit)) {
$hit_filter = "";
$order = " products.order_num desc";
}
else {
$hit_filter = "AND products.hit = $hit";
$order = " RAND()";
}
Далее по коду примерно на 482 строке
ORDER BY products.order_num desc
Заменяете на
ORDER BY $order
Вот и все!

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...