I am using a template from Virtuemarttemplates.net .
I need to display the Model Number also, which is not visible at present.
How do I do it.
Do you mean the SKU? Where do you want to display it?
Yes, SKU.
I need to display it above the Product Description.
hmmm.. no versions given .. you don't even say if cat or prod view?
Information is the KEY to getting an answer.. we shouldn't have to ask for info! Your the one who wants the advice...
either
<?php
echo '<div>'.JText::_("COM_VIRTUEMART_PRODUCT_SKU").': '.$this->product->product_sku.'</div>';
?>
or
<?php if ($sku) {
echo '<div>'.JText::_("COM_VIRTUEMART_PRODUCT_SKU").': '.$product->product_sku.'</div>';
} ?>
in either in over ridden templates\xxxx\html\com_virtuemart\productdetails\default.php
or
<?php
echo '<div class="">'.JText::_("COM_VIRTUEMART_PRODUCT_SKU").': '.$product->product_sku.'</div>';
?>
in
templates\xxxxx\html\com_virtuemart\sublayouts\products.php
Sorry, forgot to inform the version and URL
Joomla 3
VM 3.0.10
URL; http://www.pinkstory.in
on the product page, where we show price, long description and add to cart.