Hi teitbite,
after reading a lot of forums I tried this change in all the ways I have found, but it doesn't work for me.
I'm using shop and buy on joomla 3 (vm 3).
With the code you suggest in this post, I also tried the following codes:
- Code: Select all
<?php
if( !empty( $products_sku )) { ?>
Product SKU:<?php echo $products_sku ?>
- Code: Select all
<div class="product-sku">
<?php echo JText::_ ('COM_VIRTUEMART_PRODUCT_SKU'); ?> :
<?php echo $this->product->product_sku; ?>
</div>
- Code: Select all
<?php //Modifica Prodotto SKU
if($product->product_sku) echo JText::_ ( 'COM_VIRTUEMART_PRODUCT_SKU' ).": ".$product->product_sku;
?>
- Code: Select all
<?php
// Product SKU
echo $this->product->product_sku
?>
I used them as an override: mydomain/html/com_virtuemart/productdetails
and I used them in the original file: mydomain/components/com_virtuemart/views/productdetails
But nothing is changing in my product pages.
Please, could you help me and show me where I'm wrong?
Thank you for your help,
chrisrbk