VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: davies401 on September 12, 2015, 11:35:26 AM

Title: Help with If & Else Statement
Post by: davies401 on September 12, 2015, 11:35:26 AM
Joomla 3.4.4
Virtuemart 3.0.9

Hi,

I've added a line of code to product details default.php to show the number left in stock, which works ok.
The line is "<div class="edition">Limited Edition - Only <?php echo $this->product->product_in_stock ?> Left Now</div>"
However, I need to add in an "if" because I don't want to show the statement where I have zero products, can anybody advise me how I should do this? I've tried a couple of times, but I'm not getting it right.

I'd be grateful for any pointers,

Many thanks
Alan
Title: Re: Help with If & Else Statement
Post by: GJC Web Design on September 12, 2015, 12:29:07 PM
<?php

if($this->product->product_in_stock > 0){ ?>
<div class="edition">Limited Edition - Only <?php echo $this->product->product_in_stock ?> Left Now</div>

<?php } ?>
Title: Re: Help with If & Else Statement
Post by: davies401 on September 12, 2015, 12:43:07 PM
Hi GJC,

Very many thanks, your help is much appreciated.

Thank you
Alan