Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I have found solution here and it works for me: <a href="http://forum.virtuemart.net/index.php?topic=106732.0" rel="nofollow">no need to edit core files</a></p> <p>It requires copying the "default_relatedproducts.php", "default_showprices.php" and "default_addtocart.php" to your "template/html/com_virtuemart/productdetails" folder. Then replace all of the code in the "default_relatedproducts.php" with the following code:</p> <pre><code>&lt;?php // Check to ensure this file is included in Joomla! defined ( '_JEXEC' ) or die ( 'Restricted access' ); $model = new VirtueMartModelProduct(); $calculator = calculationHelper::getInstance(); $currency = CurrencyDisplay::getInstance(); ?&gt; &lt;div class="product-related-products"&gt; &lt;h4&gt;&lt;?php echo JText::_('COM_VIRTUEMART_RELATED_PRODUCTS'); ?&gt;&lt;/h4&gt; &lt;div&gt; &lt;?php foreach ($this-&gt;product-&gt;customfieldsRelatedProducts as $field) { ?&gt; &lt;div class="product-field"&gt; &lt;?php $product = $model-&gt;getProductSingle($field-&gt;custom_value,true); ?&gt; &lt;h2&gt;&lt;?php echo JHTML::link ($product-&gt;link, $product-&gt;product_name); ?&gt;&lt;/h2&gt; &lt;a title="&lt;?php echo $product-&gt;product_name ?&gt;" rel="vm-additional-images" href="&lt;?php echo $product-&gt;link; ?&gt;"&gt; &lt;?php echo $this-&gt;product-&gt;images[0]-&gt;displayMediaThumb('class="browseProductImage"', false); ?&gt; &lt;/a&gt; &lt;div class="short_desc"&gt;&lt;?php echo $product-&gt;product_s_desc; ?&gt;&lt;/div&gt; &lt;?php include 'default_showprices.php'; ?&gt; &lt;?php include 'default_addtocart.php'; ?&gt; &lt;/div&gt; &lt;?php } ?&gt; &lt;/div&gt; &lt;/div&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload