- Posts: 41
- Thank you received: 1
Show Current Category on Product Layout
12 years 7 months ago #143786
by nathan
Show Current Category on Product Layout was created by nathan
-- url of the page with the problem -- :
www.sane.org/new/information/bookshop/pr...-disorders-pamphlets
-- HikaShop version -- : 2.2.3
-- Joomla version -- : 3.2.1
-- PHP version -- : 5.3.10
-- Browser(s) name and version -- : Firefox 27.0
-- Error-message(debug-mod must be tuned on) -- : N/A
Hi there,
I'm migrating a site from Virtuemart to Hikashop and have to replicate as closely as possible the layout of the old site.
Is it possible for me to show the Current Category that a product is in on the Product Layout page?
The old page I'm trying to replicate is here:
www.sane.org/information/bookshop/detail...-disorders-pamphlets
I'm hoping there's some code I can add to the product layout template as an override to achieve this.
Thanks
Nathan
-- HikaShop version -- : 2.2.3
-- Joomla version -- : 3.2.1
-- PHP version -- : 5.3.10
-- Browser(s) name and version -- : Firefox 27.0
-- Error-message(debug-mod must be tuned on) -- : N/A
Hi there,
I'm migrating a site from Virtuemart to Hikashop and have to replicate as closely as possible the layout of the old site.
Is it possible for me to show the Current Category that a product is in on the Product Layout page?
The old page I'm trying to replicate is here:
www.sane.org/information/bookshop/detail...-disorders-pamphlets
I'm hoping there's some code I can add to the product layout template as an override to achieve this.
Thanks
Nathan
Please Log in or Create an account to join the conversation.
Less
More
- Posts: 12953
- Thank you received: 1778
12 years 7 months ago #143800
by Mohamed Thelji
Replied by Mohamed Thelji on topic Show Current Category on Product Layout
Hi,
To do that you'll have to edit the code of the "Show_default" file of the "product" view of your front-end template, through "Hikashop->DIsplay->Views".
To do that you'll have to edit the code of the "Show_default" file of the "product" view of your front-end template, through "Hikashop->DIsplay->Views".
Please Log in or Create an account to join the conversation.
12 years 7 months ago #143822
by nathan
Replied by nathan on topic Show Current Category on Product Layout
Um, yes I already know that...
I was hoping you might be able to provide me with the code that I need to add to that file to make this happen?
Thanks
I was hoping you might be able to provide me with the code that I need to add to that file to make this happen?
Thanks
Please Log in or Create an account to join the conversation.
Less
More
- Posts: 12953
- Thank you received: 1778
12 years 7 months ago #143859
by Mohamed Thelji
Replied by Mohamed Thelji on topic Show Current Category on Product Layout
Using this code will probably do the job
:
Code:
$class = hikashop_get('class.category');
$product_category = $class->get($this->element->category_id);
echo $product_category->category_name;
Please Log in or Create an account to join the conversation.
12 years 7 months ago #143980
by nathan
Replied by nathan on topic Show Current Category on Product Layout
Thanks Mohamed, that did the job.
Cheers
Nathan
Cheers
Nathan
Please Log in or Create an account to join the conversation.
Time to create page: 0.219 seconds