Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 29
  1. #11
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Flash header help please

    Try
    Code:
    <div id="headerWrapper">
    <!--bof-branding display-->
        <script type="text/javascript" src="includes/templates/Series_12_Camera/jscript/swfobject.js"></script>
    	<div id="flashcontent">
    	  <center>
    	  <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    	    codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0"
    	    id="header" width="790" height="153">
    	    <param name="movie" value="header.swf">
    	    <param name="quality" value="high">
    	    <param name="bgcolor" value="#FFFFFF">
    	    <embed name="header" src="header.swf" quality="high" bgcolor="#FFFFFF"
    	      width="790" height="153"
    	      type="application/x-shockwave-flash"
    	      pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
    	    </embed>
    	  </object>
    </center>
    	<script type="text/javascript">
    	   var so = new SWFObject("includes/templates/Series_12_Camera/images/flash/header.swf", "YOUR_HEADER", "790", "153", "7", "#FFFFFF");
    	   so.write("flashcontent");
    </script>
    </div>
    <!--eof-branding display-->

  2. #12

    Default Re: Flash header help please

    Thanks for the help misty, just a quick question before i start, is tpl_header.php the only file i have to add the codes too, do i have to remove any code to stop the old header showing?

    thanks again and sorry if im being a pain

    Chas

  3. #13
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Flash header help please

    tpl_header.php the only file i have to add the codes too
    You should have that file in includes/templates/Series_12_Camera/common/
    and code I laid out in previous post, goes into that tpl_header.php file.
    As always, BACK UP any files BEFORE altering...

  4. #14

    Default Re: Flash header help please

    all added as you posted misty, but main page is still showing the old header for some reason. below is the full file incase i have replaced/changed something i shouldnt have

    <?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 4813 2006-10-23 02:13:53Z drbyte $
    */
    ?>

    <?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 {

    }
    ?>


    <!--bof-header logo and navigation display-->
    <?php
    if (!isset($flag_disable_header) || !$flag_disable_header) {
    ?>

    <div id="headerWrapper">
    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
    <ul class="back">
    <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
    <?php if ($_SESSION['customer_id']) { ?>
    <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
    <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
    <?php
    } else {
    if (STORE_STATUS == '0') {
    ?>
    <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
    <?php } } ?>

    <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
    <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
    <?php }?>
    </ul>
    </div>
    <div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
    <br class="clearBoth" />
    </div>
    <!--eof-navigation display-->

    <div id="headerWrapper">
    <!--bof-branding display-->
    <script type="text/javascript" src="includes/templates/Series_12_Camera/jscript/swfobject.js"></script>
    <div id="flashcontent">
    <center>
    <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0"
    id="header" width="790" height="153">
    <param name="movie" value="header.swf">
    <param name="quality" value="high">
    <param name="bgcolor" value="#FFFFFF">
    <embed name="header" src="header.swf" quality="high" bgcolor="#FFFFFF"
    width="790" height="153"
    type="application/x-shockwave-flash"
    pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
    </embed>
    </object>
    </center>
    <script type="text/javascript">
    var so = new SWFObject("includes/templates/Series_12_Camera/images/flash/header.swf", "YOUR_HEADER", "790", "153", "7", "#FFFFFF");
    so.write("flashcontent");
    </script>
    </div>
    <!--eof-branding display-->

    <!--eof-header logo and navigation display-->

    <!--bof-optional categories tabs navigation display-->
    <?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
    <!--eof-optional categories tabs navigation display-->

    <!--bof-header ezpage links-->
    <?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
    <?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
    <?php } ?>
    <!--eof-header ezpage links-->
    </div>

  5. #15
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Flash header help please

    Visited site at www.inkandcables.co.uk
    View source in browser... none of the code I gave you is shown, so
    which tpl_header.php file did you alter??

  6. #16

    Default Re: Flash header help please

    /www/includes/templates/Series_12_Camera/common/

  7. #17
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Flash header help please

    /www/includes/templates/Series_12_Camera/common/
    If you placed the code I gave you into /www/includes/templates/Series_12_Camera/common/tpl_header.php and uploaded that file into correct folder, via ftp, to your site, then it should work.. Your site is currently in maintenance mode, so this may be affecting template...otherwise no idea why flash.swf is not showing..

  8. #18

    Default Re: Flash header help please

    Hi Misty, just tried it out of maintenance mode and its still showing the old header, very strange.

    Im really gratefull for the time you spent trying to help thanks :)

    php is fun hehe

    Rgds
    Chas

  9. #19
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Flash header help please

    its still showing the old header
    Yes, even though out of maintenance mode, the code I gave you is still
    not showing when viewing source via browser.. without actually looking at
    your files, via ftp, on server, not possible to proceed further... sorry

  10. #20
    Join Date
    May 2004
    Location
    Hong Kong
    Posts
    1,291
    Plugin Contributions
    1

    Default Re: Flash header help please

    In the above discussions, we assumed all conditions according to the design of Zen Cart.

    But the problem may be due to your current template files after modifications or the design.

    With the code provided by misty, I had tried the remote test and direct injected the codes into your site and the flash works.

    If your file saved in the correct dirctory and according to misty's instructions, then you should compare the files in the
    includes/templates/Series_12_Camera/common/*.*
    and with the original from Zen Cart
    includes/templates/template_default/common/*.*

    To check for that if there are any differents, may be your template files are modified or hard coded for its own use.
    A New Starter again

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Flash in header banner help please
    By chalfontgifts in forum General Questions
    Replies: 5
    Last Post: 20 Sep 2008, 09:09 AM
  2. Flash Header won't work? Please Help
    By craigpowell in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 16 Sep 2008, 01:00 PM
  3. Flash Header -- help!!
    By gshibs in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 14 Jun 2007, 01:13 AM
  4. help with flash header
    By wizzard in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 1 Jun 2007, 05:58 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg