zen 210 and php8.3
i would like to modify this code
i would like 3 options to show when a product is in stock, not in stock and when there is stock and not in stock in the cart and to say thisCode:<?php if ($flagAnyOutOfStock) { ?> <?php if (STOCK_ALLOW_CHECKOUT == 'true') { ?> <div class="messageStackError alert alert-danger"><?php echo OUT_OF_STOCK_CAN_CHECKOUT; ?></div> <?php } else { ?> <div class="messageStackError alert alert-danger"><?php echo OUT_OF_STOCK_CANT_CHECKOUT; ?></div> <?php } //endif STOCK_ALLOW_CHECKOUT ?> <?php } //endif flagAnyOutOfStock ?>
1. stock would say ships from Our warehouse
2. Non stock would say SHIPS DIRECT FROM MANUFACTURER - Usually ships within 3-5 business days
3. stock and non stock in the cart would say (havent figured out the saying yet on that one yet.
right now it only shows when not in stock i want it to show for in stock as well


Reply With Quote
