PDA

View Full Version : Flash header disappears during checkout process


jimromo
11-21-2006, 11:09 AM
I have a flash header on my site. While on the page that the client can choose which item to purchase the header shows. Once they click the 'buy now' and start the purchasing process - the header disappears. The rest of the template shows but not the header. Any idea why this happens?

http://www.northwalllittleleague.com/index.php?pr=last_chance_for_refund - this is a test page - you can see what happens here.

lwyau
11-21-2006, 11:44 AM
It looks like you have two copies of the same movie BANNER.swf, one in the root directory (public_html) and the other in your template folder. The code for displaying the movie is correct for Firefox, but not for IE. What you have to do is to change the code

<param name="movie" value="BANNER.swf" />

to

<param name="movie" value="../BANNER.swf" />

on your template file (either index.html or cart.html if you have one).