Do I need to delete the test database first or any other prerequisite?
Going to start a new thread with the question below:
SOLD OUT: when an inventory item is sold out, it is displayed on the add_to_cart page as sold out.
The code looks like this:
<div id="checkingAvail" style="display:none" > Checking availability. </div>
<div id="notSold" <?php echo(($row_WADAProducts["ProductLive"] == 0)?'':'style="display:none"'); ?> > This item is not available online. </div>
<div id="soldOut" class="alertText" <?php echo(($row_NumLeftRS["NumLeft"] == 0 && $row_WADAProducts["ProductLive"] != 0 && $row_WADAProducts["ProductUnlimited"] == 0)?'':'style="display:none"'); ?>> Sold out! </div>
Is the a way to replace the product price with "sold out" that is displayed on the products_results?
if so how wold the above code change and where would it be inserted.
Thanks Roz