Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Title problem


ricdegre

Recommended Posts

Hello

 

I change the name on the store under admin store name and store owner but still in the browser I get the old name, if I check the admin panel the name is change but not on the browser.

 

<title><?php echo TITLE; ?></title>

 

where I find the info on the DB or on the files to see if is change?

 

Thanks

Link to comment
Share on other sites

Hello

 

I change the name on the store under admin store name and store owner but still in the browser I get the old name, if I check the admin panel the name is change but not on the browser.

 

<title><?php echo TITLE; ?></title>

 

where I find the info on the DB or on the files to see if is change?

 

Thanks

You will find this define inside the (catalog)/includes/languages/english.php (for the english language) file. In the latest version it will show as

// page title
define('TITLE', STORE_NAME);

and changing the store name in your admin->configuration is enough.

But older versions used the define like

// page title
define('TITLE', 'Your store name');

which means you will have to change the name in this language file.

Best to replace it with as it is done now to have it easier changes through the admin (though it is mostly a one time change)

Link to comment
Share on other sites

You will find this define inside the (catalog)/includes/languages/english.php (for the english language) file. In the latest version it will show as

// page title
define('TITLE', STORE_NAME);

and changing the store name in your admin->configuration is enough.

But older versions used the define like

// page title
define('TITLE', 'Your store name');

which means you will have to change the name in this language file.

Best to replace it with as it is done now to have it easier changes through the admin (though it is mostly a one time change)

awsem, this works great, but one thing the others need to remeber if you have more then 1 language you need to add the same string of code in all language files in the same location, also you select the first php language files not the ones located in the folder.... hope this helps..

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...