Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

title


airbrushmaster

Recommended Posts

Use the ALT tag for this [it will show as the tool tip] it in header.php

 

catalog / includes / header.php

 

line 57 <td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', 'ALT DESCRIPTION HERE') . '</a>'; ?></td>

 

put it in between the '' and replace DESCRIPTION HERE

Sometimes you're the dog and sometimes the lamp post

[/url]

My Contributions

Link to comment
Share on other sites

Use the ALT tag for this [it will show as the tool tip] it in header.php

 

catalog / includes / header.php

 

line 57 <td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'store_logo.png', 'ALT DESCRIPTION HERE') . '</a>'; ?></td>

 

put it in between the '' and replace DESCRIPTION HERE

 

 

hi i cant find that anywhere on mine?

Link to comment
Share on other sites

post your header and i will see if the code is there or has been removed

You do mean the writing that appears when you put your mouse over the image dont you?

Nic

 

hi not that one the title right at the top on the left of internet explorer the one on internet explorer

Link to comment
Share on other sites

navbar title then.

 

You can insatll a contribution for this.

http://addons.oscommerce.com/info/5497

is a nice easy one, if you want total control then this one will be best choice

http://addons.oscommerce.com/info/5851

 

if you want a real easy way then

 

In catalog/index.php find (3 instances):

 

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

 

replace all with

 

<td class="pageHeading"><?php echo ($category['categories_name'] ? $category['categories_name'] : HEADING_TITLE); ?></td>

 

Nic

Sometimes you're the dog and sometimes the lamp post

[/url]

My Contributions

Link to comment
Share on other sites

navbar title then.

 

You can insatll a contribution for this.

http://addons.oscommerce.com/info/5497

is a nice easy one, if you want total control then this one will be best choice

http://addons.oscommerce.com/info/5851

 

if you want a real easy way then

 

In catalog/index.php find (3 instances):

 

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

 

replace all with

 

<td class="pageHeading"><?php echo ($category['categories_name'] ? $category['categories_name'] : HEADING_TITLE); ?></td>

 

Nic

 

where do i add the text i want ?

Link to comment
Share on other sites

Which one did you want to use andy?

The two contributions will have their own install instructions

The code i gave you goes in your index.php file

 

 

Find (3 times)

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

 

and replace it with

 

<td class="pageHeading"><?php echo ($category['categories_name'] ? $category['categories_name'] : HEADING_TITLE); ?></td>

Sometimes you're the dog and sometimes the lamp post

[/url]

My Contributions

Link to comment
Share on other sites

dont see why that would be.

 

You may find it easier to install the http://addons.oscommerce.com/info/5497 one then

 

yes looked at that but i have meta tags already all i want to do is change from say computer supplies to computers supples norths staffs there must be an easy way

Link to comment
Share on other sites

check your catalog (if present) includes / languages / english.php (or your language) look for

define('TITLE', STORE_NAME);

this is taken from your database tho, it comes from admin / configuration / my store >> store name

So either change that or do it hard code way

Nic

Sometimes you're the dog and sometimes the lamp post

[/url]

My Contributions

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...