VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: powercoders on November 14, 2020, 02:25:50 AM

Title: How to display all product's parents on Product Page?
Post by: powercoders on November 14, 2020, 02:25:50 AM
Hi there!
Need to show all product's parents by text like "Parent1/Parent2/Parent3" on the product page. It's like breadcrubms but little different and use for another goals.
But don't know how to do it. Help, please!
Title: Re: How to display all product's parents on Product Page?
Post by: powercoders on November 15, 2020, 03:22:05 AM
Help please!
Title: Re: How to display all product's parents on Product Page?
Post by: pinochico on November 15, 2020, 03:51:04 AM
https://www.freelancer.com
Title: Re: How to display all product's parents on Product Page?
Post by: jenkinhill on November 15, 2020, 18:46:21 PM
Or try a search.....  eg http://forum.virtuemart.net/index.php?topic=135879.msg475444#msg475444
Title: Re: How to display all product's parents on Product Page?
Post by: Rsn on November 16, 2020, 06:06:36 AM
Quote from: powercoders on November 14, 2020, 02:25:50 AM
Need to show all product's parents by text like "Parent1/Parent2/Parent3" on the product page

Hi, maybe something like this?  ;)


$cat_model = VmModel::getModel('category');
$parent_cat = $cat_model->getCategory($this->product->virtuemart_category_id);
$parent_cats = $parent_cat->parents;
// echo '<pre>'; print_r($parent_cats); echo '</pre>';