ricdegre Posted February 4, 2007 Share Posted February 4, 2007 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 More sharing options...
wheeloftime Posted February 4, 2007 Share Posted February 4, 2007 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 More sharing options...
ricdegre Posted February 4, 2007 Author Share Posted February 4, 2007 Thanks problem fix, I use and older version. :-" Link to comment Share on other sites More sharing options...
nordikte Posted February 6, 2007 Share Posted February 6, 2007 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.