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

Полный путь к товару в breadcrumbs


Recommended Posts

Здравствуйте, уважаемые формучане.

 

Вопрос: Как вывести полный путь в хлебных крошках в карточке товара, если на товар зашли из поиска или с главной страницы?

 

Изолазал уже все формумы, но не могу найти точного решения.

SeoPro не хочу сивить, т.к. не уверен, что он поможет и потому чтоюсь сломать все проингдексированные ЧПУ.

Open-cart 2.2

 

Заранее спасипотому что за помощь!

Link to comment
Share on other sites


  • 7 months later...
В 09.03.2018 в 23:58, MikeTheRaven сказал:

В файле \catalog\controller\product\product.php находите строку

$this->load->model('catalog/category');

 и ниже добавляете код

if (isset($this->request->get['product_id'])) {
	$product_id = (int)$this->request->get['product_id'];
} else {
	$product_id = 0;
}

$this->load->model('catalog/product');

$product_categories = $this->model_catalog_product->getCategories($product_id);

if (!empty($product_categories)) {
    $this->request->get['path'] = null;
    
    foreach ($product_categories as $key => $value) {
        $this->request->get['path'] .= '_' . $value['category_id'];
    }
    
    $this->request->get['path'] = trim($this->request->get['path'], '_');
}

затем ниже в этом же файле находите участок кода

if (isset($this->request->get['product_id'])) {
	$product_id = (int)$this->request->get['product_id'];
} else {
	$product_id = 0;
}

$this->load->model('catalog/product');

и удаляете его за ненадобностью (желательно, но не обязательно).

 

Спасипотому что. 

Link to comment
Share on other sites


  • 5 months later...
В 10.10.2018 в 11:55, Serg1010 сказал:

 

Спасипотому что. 

Если товар принадлежит множеству категорий, как в этом варианте кода сгделать ик, чтобы в хлебных крошках выводился полный путь НО только главной или первой категории, в которую входит продукт?
Например, чтобы было:
главная > Категория 1 > Подкатегория 1 > Товар
а не:
главная > Категория 1 > Подкатегория 1 > Категория 2 > Подкатегория 2 > Товар

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.