Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I remove...


SkinEFX

Recommended Posts

How do I remove the

 

"Welcome to ..."

the graphic next to it

"welcome guest....login...etc"

 

this stuff is all at the top of the main page.

 

I don't need it in there and would like it deleted...any ideas?

 

Thanks in advance

Link to comment
Share on other sites

Comment out this line: note: this is comment tags <!-- //-->

 

            <!-- <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>//-->

 

In defauld.php about line 344

Steve

-------------------------

Link to comment
Share on other sites

find the default.php file in your languages directory. There will be some things you can change in there. Also in your english.php file is the rest of it...i think.

 

As for the images that can be changed in your catalog/default.php

 

Change This:

td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0">

     <tr>

       <td><table border="0" width="100%" cellspacing="0" cellpadding="0">

         <tr>

           <td class="pageHeading"><?php echo HEADING_TITLE; ?></td>

           <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

         </tr>

       </table></td>

 

To This:

td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0">

     <tr>

       <td><table border="0" width="100%" cellspacing="0" cellpadding="0">

         <tr>

           <td class="pageHeading"><?php echo HEADING_TITLE; ?></td>

           <td class="pageHeading" align="right"></td>

         </tr>

       </table></td>

     </tr>

Link to comment
Share on other sites

It's happend to me too!

 

I hate it when that happends.

 

I've even did a bunch of reasearch on a fix and then 3 people posted a fix before me. Oh, well it's the nature of the beast.

Steve

-------------------------

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...