Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Flash load only once per visit

Flash load only once per visit

Locked

Views: 2,893

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
27 Nov 2007, 6:46 AM
#1
funksdaburn avatar

funksdaburn

New Zenner

Join Date:
Sep 2007
Posts:
9
Plugin Contributions:
0

Flash load only once per visit

Hello,
Is there a way to only have a flash header play once per visit, or have a flash header only play on the home page and a separate graphic play on every other page?
Thanks for you help in advance.

27 Nov 2007, 9:04 AM
#3
funksdaburn avatar

funksdaburn

New Zenner

Join Date:
Sep 2007
Posts:
9
Plugin Contributions:
0

Re: Flash load only once per visit

I have read this post and Im still confused, can you help out? Can you explain creating a new file and where to place the code?

27 Nov 2007, 9:40 AM
#4
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: Flash load only once per visit

You need to create two files, which display header.
i.e.

  1. top.php contains header images code
  2. top_main.php contains flash file code
    Then in tpl_header.php, you call
    those two files, as per thread I quoted earlier
    i.e.
if ($this_is_home_page) {
include('top_main.php'); 
}
else
{
include('top.php');
}

This will ensure flash code/header is only displayed on
your zencart home page.