Hi ,
I'm trying to add SKU after product name or before pricing ...
It need to be similair as this :
(http://i59.tinypic.com/jp808h.png)
Thank you
make an over ride for your templates\YOUR_TEMPLATE\html\com_virtuemart\sublayouts\products.php
add
<?php // Product Sku
if (!empty($product->product_sku)) { ?>
<p class="product_sku">
<?php echo $product->product_sku; ?>
</p>
<?php } ?>
where ever u require it