After doing some research on this I found this code that does work in showing the SKU on the product catgeory page:
- Code: Select all
<?php // Product Sku
echo JHTML::link ( JRoute::_ ( 'index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' .$product->virtuemart_product_id . '&virtuemart_category_id=' .$product->virtuemart_category_id ), $product->product_sku, array ('title' => $product->product_sku ) ); ?>
The problem I have is I need it to show the title description ( SKU 933402) and I would like this number to not be linked to the product page. I can see the code that controls this but I am not a PHP guy so I am not sure how to make the right edits to make this work and it is driving me nuts!
Could someone give me the direction I need to make this work.. PLEASE??