check this article in the tutorials/FAQ section
www.zen-cart.com/tutorials/index.php?article=126
check this article in the tutorials/FAQ section
www.zen-cart.com/tutorials/index.php?article=126
Thats sort of it. if i do that correct comment info it will get rid of everything including the header_bg that is the files on the right that would take up the entire top section.
when i remove logo.gif from the following line in header.php the place holder shows up.
// added defines for header alt and text
define('HEADER_ALT_TEXT', '');
define('HEADER_SALES_TEXT', '');
define('HEADER_LOGO_WIDTH', '192px');
define('HEADER_LOGO_HEIGHT', '64px');
define('HEADER_LOGO_IMAGE', '');
So what has to be commented out to just remove the one place holder?
You don't comment out DEFINES - just remove the text descriptions between the set of single quotes:-
define('HEADER_LOGO_IMAGE', 'logo.gif');
becomes:-
define('HEADER_LOGO_IMAGE', '');
Figured it out.
Had to remove some text
(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images').
<div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?></div>
removed this line and it worked.
if you commentout the logo line it seems that it will revert back to the common templete and i assume it sees this as not complete or you get info from somewhere else.
the above was a little easer.
i just made a copy of the file and names it with old and the date just in case i need to figure out what i did laster on or i could have just commented out what i did. bot ways work for me.