I've got a check to see if it's a certain producttype (dog), and if so, something fits. Question is, can I have it be 'dog' and 'cat' and still have it as a line and not going into a if/else?
<-- Total noob, just learning.
Thanks in advance and Happy New Year.
PHP Code:
<?php if($this->product->productType == 'dog') { ?> ruff ruff ruff <?php } ?>
Code:
<?php if($this->product->productType == 'dog') { ?> ruff ruff ruff <?php } ?>