MsBirgit Posted January 22, 2006 Posted January 22, 2006 Hello, I'm getting burn-out trying to figure this out - New to PHP! Does anyone know how to get rid of the $0.00 on new_products.php ?? I also want to get rid of the $0.00 on (New Monthly Products on the Main Page) ... Please Help! (Example)... http://giftbloom.com/catalog/products_new....5af76c40e25b2f8
♥Vger Posted January 22, 2006 Posted January 22, 2006 I'm sorry, but it seems that you have more problems than that - because prices are not displaying when you go to the products from the Categories link (no reference to price at all). Have you been trying to edit something? Vger
MsBirgit Posted January 22, 2006 Author Posted January 22, 2006 I'm sorry, but it seems that you have more problems than that - because prices are not displaying when you go to the products from the Categories link (no reference to price at all). Have you been trying to edit something? Vger Thanks for the reply. Actually I don't want to show any prices on my site at all. I just want to show the images and descriptions, as this is going to be an affiliate site, so viewers will be directed to another site to view the price or make a purchase.
♥Vger Posted January 23, 2006 Posted January 23, 2006 Did you go to your osCommerce admin panel --> Configuration --> Product listing and set "Display Product Price" to false? Vger
MsBirgit Posted January 23, 2006 Author Posted January 23, 2006 Did you go to your osCommerce admin panel --> Configuration --> Product listing and set "Display Product Price" to false? Vger Yes, but that didn't work. Anyway so, I was able to remove the $0.00 by editing the "catalog/products_new.php". I replaced : "<td valign="top" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_new['products_id']) . '"><b><u>' . $products_new['products_name'] . '</u></b></a><br>' . TEXT_DATE_ADDED . ' ' . tep_date_long($products_new['products_date_added']) . ' <br>' . TEXT_MANUFACTURER . ' ' . $products_new['manufacturers_name'] . '<br><br>' . TEXT_PRICE . ' ' . $products_price; ?></td> " With this code: "<td valign="top" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_new['products_id']) . '"><b><u>' . $products_new['products_name'] . '</u></b></a><br>' . TEXT_DATE_ADDED . ' ' . tep_date_long($products_new['products_date_added']) . ' <br>' . TEXT_MANUFACTURER . ' ' . $products_new['manufacturers_name'] . '<br><br>'; ?>" Example: http://giftbloom.com/catalog/products_new.php?
Recommended Posts
Archived
This topic is now archived and is closed to further replies.