Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Text in web


Guest

Recommended Posts

Hi, Under its product in my webstore it is a text says: this product was added to our catalog this dato.

How to remove this text.

 

And why can`t I cange anything in my FCK editor, if I want to cange text in manepages.

I get this message: can`t wrout to file.

 

With thanks

Olaf

Link to comment
Share on other sites

Hi, Under its product in my webstore it is a text says: this product was added to our catalog this dato.

How to remove this text.

 

With thanks

Olaf

You referring to product_info page or what's new and what ver you running?

Link to comment
Share on other sites

You mean what type of webpage, I am running?, Oscommerce 2,2 I think.

Is it text in product page I look for? ( no text thear) don`t se any whats new here page either.

 

I beleve it was easy to remove this text but I can`t find this text anywere.

Thanks anyway for your answer and I try keep on looking for it,

 

Olaf

Link to comment
Share on other sites

You mean what type of webpage, I am running?, Oscommerce 2,2 I think.

Is it text in product page I look for? ( no text thear) don`t se any whats new here page either.

 

Olaf

 

On a vanilla store it should be around line 198. This is probably what you are looking for:

 

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

 

To comment it out, change it to this:

 

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

Link to comment
Share on other sites

If that doesn't work (if you lose the </td>),

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

will work.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...