Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do you get rid of the ' Welcome title on the homepage'?


khaus

Recommended Posts

Posted

>_<

How do you get rid of the 'Welcome Guest! Would you like to log yourself in? Or would you prefer to create an account?'

on the first page?

 

How would you get rid of all the title and add something else like an image?

Posted
>_<

How do you get rid of the 'Welcome Guest! Would you like to log yourself in? Or would you prefer to create an account?'

on the first page?

 

How would you get rid of all the title and add something else like an image?

 

to get rid of the welcome part, comment out this in catalog/index.php, line 300

		  <tr>
		<td class="main"><?php echo tep_customer_greeting(); ?></td>
	  </tr>
	  <tr>
		<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
	  </tr>
	  <tr>
		<td class="main"><?php echo TEXT_MAIN; ?></td>
	  </tr>

 

the title is currently this part: line 287

	  <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>
  </tr>

 

you can upload a new image to your images folder and replace that section by this code, specifying your own image name info

	  <tr>
		<td><?php echo tep_image(DIR_WS_IMAGES . 'your_image.gif', HEADING_TITLE); ?></td>
  </tr>

:-)

Monika

 

addicted to writing code ... can't get enough of databases either, LOL!

 

my toolbox: Textpad - Compare and Merge - phpMyAdmin - WS_FTP - Photoshop - How to search the forum

 

Interactive Media Award July 2007 ~ category E-Commerce

my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...

  • 1 month later...

Archived

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

×
×
  • Create New...