Hello,
I have tried your ocmod at Version 3.0.2.0 but didn't work.
Mention that I edit the operation <file path="catalog/view/theme/*/template/product/product.twig"> to fit with my custom theme.
No errors but category link does not appear in product page.
Maybe something is change at Version 3.0.2.0.
Any ideas?
Thanks in advance!
I have tried your ocmod at Version 3.0.2.0 but didn't work.
Mention that I edit the operation <file path="catalog/view/theme/*/template/product/product.twig"> to fit with my custom theme.
No errors but category link does not appear in product page.
Maybe something is change at Version 3.0.2.0.
Any ideas?
Thanks in advance!
You'll sure find one, by posting a request in the commercial Forum
for this.
Ernie
for this.
Ernie
My Github OC Site: https://github.com/IP-CAM
5'000 + FREE OC Extensions, on the World's largest Github OC Repository Archive Site.
Amazing work done here! Ataching same file modded for Journal 3 theme.
Attachments
Journal theme 3 support
Web Development, Consulting and SEO for Europe by itech.bg
Hi Kestas,
I modified the code for working with Journal3 and it's working great. Thanks for this.
But I only need the last category displayed. Can you please help?
I modified the code for working with Journal3 and it's working great. Thanks for this.
But I only need the last category displayed. Can you please help?
Hi there,
When I install this module, the category not show on product page.
Before I install, I make the necessary changes in file paths.
After installation, this module is missing in modifications.
Please help me to fix this,
Thank you!
Opencart ver. 3.0.3.8
Journal ver 3.1.8
When I install this module, the category not show on product page.
Before I install, I make the necessary changes in file paths.
After installation, this module is missing in modifications.
Please help me to fix this,
Thank you!
Opencart ver. 3.0.3.8
Journal ver 3.1.8
I had a problem with some products so I had to change this code a bit:
Code: Select all
$data['text_linked_categories'] = $this->language->get('text_linked_categories');
$query_linked_categories = $this->model_catalog_product->getCategories($product_id);
$linked_categories = array();
foreach( $query_linked_categories as $linked_category_data ) {
$linked_category = $this->model_catalog_category->getCategory($linked_category_data['category_id']);
if (!empty($linked_category)){
$linked_category_info['id'] = $linked_category_data['category_id'];
$linked_category_info['href'] = $this->url->link('product/category', 'path=' . $linked_category_data['category_id']);
$linked_category_info['name'] = $linked_category['name'];
$linked_categories[] = $linked_category_info;
}
}
Who is online
Users browsing this forum: No registered users and 1 guest