Jump to content

Recommended Posts

Всем привет!

Подскажите, как сделать принудительную сортировку связанных товаров по цене? Сейчас они сортируются из админки перемещением, а нужно чтобы в независимости от того, как они добавлены в админке, на сайте выводились по возрастанию цены

Заранее благодарен!

Link to post
Share on other sites

В view/ProductView.php попробуйте заменить

            foreach($this->products->get_products(array('id'=>$related_ids, 'in_stock'=>1, 'visible'=>1)) as $p)
на

            foreach($this->products->get_products(array('id'=>$related_ids, 'in_stock'=>1, 'visible'=>1, 'sort'=>'price')) as $p)
 

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...