hi guys how i can integrate the list of products in manufactures details page??
So, i have this
<?php // Manufacturer Product Link
$manufacturerProductsURL = JRoute::_('index.php?option=com_virtuemart&view=category&virtuemart_manufacturer_id=' . $this->manufacturer->virtuemart_manufacturer_id);
if(!empty($this->manufacturer->virtuemart_manufacturer_id)) { ?>
<div class="manufacturer-product-link">
<a target="_top" href="<?php echo $manufacturerProductsURL; ?>"><?php echo JText::sprintf('COM_VIRTUEMART_PRODUCT_FROM_MF',$this->manufacturer->mf_name); ?></a>
</div>
<?php } ?>
But is show only the link to products, can i integrate without link? Iframe? can you help me?
Hope your answer
A.