Post by tjonnyc » Tue Sep 26, 2017 12:21 am

Is there a reference list of all the possible product variables in OC 3.0.2.0?
For example, in the category.twig and product.twig files, there are references to things like:

{{ product.href }}
{{ product.name }}
{{ product.description }}
{{ product.price }}
{{ product.special }}

etc.

Is there a list of ALL the available variables? Somewhere?

Alternately, does anyone know how to display the product SKU on the category page & product page? That's the one I'm really looking for.

Active Member

Posts

Joined
Tue Dec 21, 2010 5:05 am

Post by yodapt » Tue Sep 26, 2017 2:46 am

No there isnt such reference list. You can track them down though, going to the respective controllers and models called.

Most of them refer to their database table siblings.

Opencart Developer - My Extension Showcase
Contact me at aeon.yoda@gmail.com


User avatar
Active Member

Posts

Joined
Fri Jun 17, 2011 6:39 pm


Post by tjonnyc » Tue Sep 26, 2017 4:05 am

Well, my problem is, I would like to display the SKU on the category page & product page... but there's NO such reference in the templates.
I had it custom-hacked in the previous version (OC 2.0), but that's PHP and it's NOT working in this version on Twig.

Active Member

Posts

Joined
Tue Dec 21, 2010 5:05 am

Post by yodapt » Tue Sep 26, 2017 4:57 am

To make sku available in twig on product page, edit catalog/controller/product/product.php, after line 161 add :

Code: Select all

$data['sku'] = $product_info['sku'];
To make sku available in twig on category page, edit catalog/model/catalog/product.php, and on line 60 add a reference to sku :

Code: Select all

$sql = "SELECT p.product_id, p.sku, 
and also on catalog/controller/product/category.php afther line 213 :

Code: Select all

'sku'  => $result['sku'],
All these changes should be made using OCMod or VQMod, instead of altering the original files, but this is what you need to have sku available inside the respective twig template files for those pages.

Opencart Developer - My Extension Showcase
Contact me at aeon.yoda@gmail.com


User avatar
Active Member

Posts

Joined
Fri Jun 17, 2011 6:39 pm

Who is online

Users browsing this forum: No registered users and 443 guests