Since my son (formally in Sydney working for Dell) owns Boomerang's in Austin, TX how can I resist.
PM me with a copy of your tpl_header.php
Since my son (formally in Sydney working for Dell) owns Boomerang's in Austin, TX how can I resist.
PM me with a copy of your tpl_header.php
A little help with colors.
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.
here is the header which I have in operation now:
<?php
/**
* Common Template - tpl_header.php
*
* this file can be copied to /templates/your_template_dir/pagename<br />
* example: to override the privacy page<br />
* make a directory /templates/my_template/privacy<br />
* copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
* to override the global settings and turn off the footer un-comment the following line:<br />
* <br />
* $flag_disable_header = true;<br />
*
* *package templateSystem
* *copyright Copyright 2003-2006 Zen Cart Development Team
* *copyright Portions Copyright 2003 osCommerce
* *license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* *version $Id: tpl_header.php 3192 2006-03-15 22:37:24Z wilt $
*/
?>
<!-- bof flash insertion -->
<?php
{
echo '<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" height="160" width="750" id="Flash1">
<param name="Movie" value="images/patchshop.swf" />
<param name="Quality" value="AutoLow" />
<param name="Loop" value="1" />
<param name="Play" value="1" />
<param name="WMode" value="Window" />
<param name="SAlign" value="l" />
<embed src="images/patchshop.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="750" height="144"></embed></object>';
}
?>
<!-- eof flash insertion -->
The orginal header will follow
Ron
This is the original header;
<?php
/**
* Common Template - tpl_header.php
*
* this file can be copied to /templates/your_template_dir/pagename<br />
* example: to override the privacy page<br />
* make a directory /templates/my_template/privacy<br />
* copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
* to override the global settings and turn off the footer un-comment the following line:<br />
* <br />
* $flag_disable_header = true;<br />
*
* *package templateSystem
* *copyright Copyright 2003-2006 Zen Cart Development Team
* *copyright Portions Copyright 2003 osCommerce
* *license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* *version $Id: tpl_header.php 3192 2006-03-15 22:37:24Z wilt $
*/
?>
<?php
// Display all header alerts via messageStack:
if ($messageStack->size('header') > 0) {
echo $messageStack->output('header');
}
if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
echo htmlspecialchars(urldecode($_GET['error_message']));
}
if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
echo htmlspecialchars($_GET['info_message']);
} else {
}
?>
?!?
The tpl_header.php should be about 108 lines long and it is where you are calling the az_top_left.gif
Save forum space----click on my username and PM the file.
A little help with colors.
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.