[Pro] Nobody who can help me with this?

I had this problem before, WOW slider with show/hide layer on one page.

Tim Plumb provide me this code:

and told me to Paste it in my Freeway page just after the Wow Slider code in Page > HTML Markup > Before End Body.

Now I rebuild this site in FW6 and did the same thing but it doesn’t work?

Anyone suggestions?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Looks like you pasted it in the wrong spot. Look in your Page / HTML Markup for wherever you added this line:

<script type="text/javascript" src="engine1/jquery.js"></script> 

Paste the code Tim provided directly after this line (and remove it where you had it, near the bottom of the page) and upload and see if it works then. You have to add noConflict directly after you include jQuery but before you call it in any way.

Walter

On Sep 6, 2013, at 1:42 PM, Erik wrote:

I had this problem before, WOW slider with show/hide layer on one page.

Tim Plumb provide me this code:

and told me to Paste it in my Freeway page just after the Wow Slider code in Page > HTML Markup > Before End Body.

Now I rebuild this site in FW6 and did the same thing but it doesn’t work?

Anyone suggestions?

Hostnet: Uw domeinnaam en webhosting zijn nu actief


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Hi Waltd

First thx for helping me,

I already did exactly what you discribed:

Here you find the original code and code where I paste the line, do you see something wrong?

http://pastie.org/private/6rzdeyhrqegbfpelboyw

Erik


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

You’re looking in the wrong spot. You need to do this up in the head of the page, not in the body. There are two bits of wow slider code – one goes in the page head, and the other goes in the body, under the actual images for wow slider to consume.

Look in Page / HTML Markup and see if you can find the line I showed you in my previous message. That’s fundamentally different than what you pasted.

If you were looking at a block diagram of the page, here’s what you need to see:

head
	links to prototype and scriptaculous
	link to jquery
	script tag with jquery.noConflict()
/head
body
	bunch of html
	script tags for wowslider
	more html
/body

You’ve got noConflict() down below the wowslider scripts, where it is way too late to save anything.

Walter

On Sep 6, 2013, at 2:54 PM, Erik wrote:

Hi Waltd

First thx for helping me,

I already did exactly what you discribed:

Here you find the original code and code where I paste the line, do you see something wrong?

http://pastie.org/private/6rzdeyhrqegbfpelboyw

Erik


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Still no succes, placed to code as you said (and removed it at the other spot)

How it should work (removed WOW slider here)
http://www.test.graphicid.nl/Communicatie/hostedvoicecloud.html


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Show me the link to the page where you fixed it. I need to see how it actually renders, and if it throws an error.

Walter

On Sep 6, 2013, at 3:19 PM, Erik wrote:

Still no succes, placed to code as you said (and removed it at the other spot)

How it should work (removed WOW slider here)
http://www.test.graphicid.nl/Communicatie/hostedvoicecloud.html


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Try editing the script from this:

<script type="text/javascript">
//<![CDATA[var noconflict = {}; noconflict.$ = jQuery.noConflict(true);
//]]></script>

to this (remove the CDATA comments)

<script type="text/javascript">
var noconflict = {}; noconflict.$ = jQuery.noConflict(true);
</script>

I think maybe a copy-paste error has crept in here, and those comments don’t look exactly correct.

Walter

On Sep 6, 2013, at 3:24 PM, Erik wrote:

Hostnet: Uw domeinnaam en webhosting zijn nu actief


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

YESSSS,

Thats the solution, so the script was the issue

Thank you very much for your time Waltd!!

Erik


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options