Support the VirtueMart project and become a member
Hello,The right one is <?php echo $this->product->product_s_desc ?>and better to useif (!empty($this->product->product_s_desc)) { <?php echo $this->product->product_s_desc; } ?>$this refers to the current product. The code that you post is for category page.More information regarding $this vs $product explained here: http://forum.virtuemart.net/index.php?topic=100696.0Product page fields: http://forum.virtuemart.net/index.php?topic=92756.0Category page fields: http://forum.virtuemart.net/index.php?topic=97744.0Take a good look on that posts, they will help you a lot!Regards,Bytelord