Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Remove $0.00 in products_new.php


MsBirgit

Recommended Posts

Posted

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

Posted
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.

Posted

Did you go to your osCommerce admin panel --> Configuration --> Product listing and set "Display Product Price" to false?

 

Vger

Posted
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?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...