Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I remove the added on date?


kendragb

Recommended Posts

Hi,

I have been trying to figure out how to remove the "this product was added to our catalog on..." from showing up on my website and I can't seem to figure out how to do it. Any advice would be GREAT!

Thanks :D

Link to comment
Share on other sites

Open up product_info.php. Make a backup. Search for "date" and identify the line that calls the date added. Delete it!

 

Iggy

Everything's funny but nothing's a joke...

Link to comment
Share on other sites

Hi,

I have been trying to figure out how to remove the "this product was added to our catalog on..." from showing up on my website and I can't seem to figure out how to do it.  Any advice would be GREAT!

Thanks :D

Hi Iggy,

Thanks so much for the fast response. Unfortunately, I don't know how to get to the product info page that you are talking about. Is it ubder the Catalog part of my site? Or what would be the entire URL that I would type in after my website? .com/..........? Thanks again. :rolleyes:

Kendra

Link to comment
Share on other sites

Use an ftp program and log into your host.

go to your catalog folder

find the product_info.php and download it to your computer

(it will be in your main catalog folder)

look for the lines

 

<tr>

<td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td>

</tr>

 

and delete them or change them to

 

<tr>

<td align="center" class="smallText"><?php // echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td>

</tr>

 

so it is still there but will not show up incase you want to have it there in the future

Wendy James

 

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

Link to comment
Share on other sites

Use an ftp program and log into your host.

go to your catalog folder

find the product_info.php and download it to your computer

(it will be in your main catalog folder)

look for the lines

 

      <tr>

        <td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td>

      </tr>

 

and delete them or change them to

 

      <tr>

        <td align="center" class="smallText"><?php // echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td>

      </tr>

 

so it is still there but will not show up incase you want to have it there in the future

 

Hi Wendy,

Thanks so much for the help!!

Kendra :rolleyes:

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...