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

Картинки в подкатегории меню


Recommended Posts

Приветствую!

Подскажите кто знает и есть ли вообещё возможность добавления картинок в подкатегории на  opencart Version 3.0.2.0  как на картинке

Link to comment
Share on other sites


1 час назад, omar572 сказал:

Приветствую!

Подскажите кто знает и есть ли вообещё возможность добавления картинок в подкатегории на  opencart Version 3.0.2.0  как на картинке

пишите в личку 

Link to comment
Share on other sites


On 11/30/2018 at 8:49 PM, omar572 said:

Подскажите кто знает и есть ли вообещё возможность добавления картинок в подкатегории на  opencart Version 3.0.2.0  как на картинке

можно, элеменирно

контроллер product/category.php

	$results = $this->model_catalog_category->getCategories($category_id);

			foreach ($results as $result) {
				$filter_data = array(
					'filter_category_id'  => $result['category_id'],
					'filter_sub_category' => true
				);

				// добавить отсюда
				if ($result['image']) {
					$thumb = $this->model_tool_image->resize($result['image'], $this->config->get('theme_' . $this->config->get('config_theme') . '_image_category_width'), $this->config->get('theme_' . $this->config->get('config_theme') . '_image_category_height'));
				} else {
					$thumb = '';
				}
				// досюда

				$data['categories'][] = array(
					'name' => $result['name'] . ($this->config->get('config_product_count') ? ' (' . $this->model_catalog_product->getTotalProducts($filter_data) . ')' : ''),
					'href' => $this->url->link('product/category', 'path=' . $this->request->get['path'] . '_' . $result['category_id'] . $url)
					// добавить
					,'thumb' => $thumb 
				);
			}

дное в шаблоне product/category.twig добавить.

{% if category.thumb %}<img src="{{ category.thumb }}" /> {% endif %}

ну и сгделать соответствующую разметку

Edited by lexxkrt
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


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