How do I add text next to the logo on the header. I dont know how to find the file to change
How do I add text next to the logo on the header. I dont know how to find the file to change
link to site please.
in the default download of ZC it would say something like Sales message Goes here & you could replace that with your text just right of logo
ok, lets start by seeing if this exists:
locate file:
/includes/languages/english/CUSTOM_TEMPLATE/header.php
if it exists
find inside:
change to this:Code:define('HEADER_SALES_TEXT', '');
and we go from there.Code:define('HEADER_SALES_TEXT', 'MY NEW TEXT');
Okay I changed the name there but it still does not show up on the header
ok, lets see if it is be called:
open:
/includes/templates/CUSTOM_TEMPLATE/common/tpl_header.php
see if something that looks like this:
<?php
if (HEADER_SALES_TEXT != '') {
?>
<!-- <div id="taglineWrapper"><?php// echo HEADER_SALES_TEXT ;?></div> -->
<?php
}
?>
Ok I found that, do I change the sales text to my company name
You would add your name to the:
/includes/languages/english/CUSTOM_TEMPLATE/header.php
Where I had you add:
if you have the code in both places, I am trying to figure out why it is not displaying on your site.Code:define('HEADER_SALES_TEXT', 'MY NEW TEXT');
the code from #6 should call code from #4
in ADMIN > TOOLS > DEVELOPERS TOOL KIT
at the bottom you will see:
Look-up in all files
Key or Name:
type HEADER_SALES_TEXT
and do a search on catalogs php files. what files does it return?