Good evening!
Being a total PHP-n00b I'm asking here hoping some clever brain out there can help me out. This is the case:
<?php if(wpsc_product_count() == 3 ) :?>
<div class="productseparator"></div>
<?php endif ; ?>
Now, what I want out of this is the following: If wpsc_product_count matches 3, 6, 9, 12, 15, 18, 21, 24, 27 or 30 - I would like it to print nothing at all. Every other value should print the .productseparator DIV.
Thanks a million in advance!