VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: Krystopher Larouche on August 26, 2015, 01:12:12 AM

Title: Need help - Adding SKU to category page
Post by: Krystopher Larouche on August 26, 2015, 01:12:12 AM
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
Title: Re: Need help - Adding SKU to category page
Post by: GJC Web Design on August 26, 2015, 08:54:56 AM
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