Jump to content
  • разработка интернет магазинов на opencart
  • доработка интернет магазинов на opencart

Вывести товары конкретной категории конкретного производителя


Recommended Posts

Здравствуйте.

Нужно вывести товары конкретной категории на страниэто производителя.

 

Синдартно уже есть страница со всеми товарами производителя. Но мне нужно выводить только те, которые входят в категорию 5.

Я ик понимаю за вывод товаров отвечает вот этот кусок кода:

$data['products'] = array();

            $filter_data = array(
                'filter_manufacturer_id' => $manufacturer_id,
                'sort'                   => $sort,
                'order'                  => $order,
                'start'                  => ($page - 1) * $limit,
                'limit'                  => $limit
            );

            $product_total = $this->model_catalog_product->getTotalProducts($filter_data);

            $results = $this->model_catalog_product->getProducts($filter_data);

 

Туда нужно добавить строчку что то врогде?:

$data['products'] = array();

            $filter_data = array(
                'filter_manufacturer_id' => $manufacturer_id,
		'filter_category_id'     => 5,
                'sort'                   => $sort,
                'order'                  => $order,
                'start'                  => ($page - 1) * $limit,
                'limit'                  => $limit
            );

            $product_total = $this->model_catalog_product->getTotalProducts($filter_data);

            $results = $this->model_catalog_product->getProducts($filter_data);

 

Edited by AlexMax13
Link to comment
Share on other sites


В 14.10.2021 в 12:02, Shureg сказав:

А вопрос-то в чём? Да, "что-то врогде".

 

Собственно я испрашиваю, возможно кто то подобное гделал и знает как отфильтровать товары по производителю и категориям.

Link to comment
Share on other sites


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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.