RE: Can some prices be taken away while other stay?
Rumble <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.features |
|---|---|
| Message-ID | <738f47caec25185abe673007c5e34db7@osCommerce-Forums> |
This message was sent from: Features
http://forums.oscommerce.com/viewtopic.php?p=210686#210686
----------------------------------------------------------------
Find this line
[code]<td align="right" class="pageHeading"><?php echo $products_price; ?></td> [/code]
Change to
[code]<td align="right" class="pageHeading">
<?php
if ($products_price > 0) {
echo $products_price;
} else {
}
?></td> [/code]