VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: solantis on August 07, 2012, 13:45:39 PM

Title: Related Products
Post by: solantis on August 07, 2012, 13:45:39 PM
So i have made some items related in the backend but how do i display them from the frontend? Is there a module to do this or does it display on certain pages?
Title: Re: Related Products
Post by: bytelord on August 07, 2012, 16:01:43 PM
Hello,

If you select related products from the backend for a product on the default vm template will be shown in product details page under related products (after description if i am not wrong).

If you use a custom template you can use the following code to load related products template inside product details template.


<?php echo $this->loadTemplate('relatedproducts'); ?>


after that you can copy relatedproducts template to your template and modify it as you wish (need to know some php skills and also joomla template system).

Hope helps you.

Regards.