Plugin Author
jeff_
(@jeff_)
any javascript error ? (too) big images ?
Images aren’t too big. It doesn’t work well in Chrome only.
My link.
Please ignore this help request. Somehow, it have got solved after making a new post. Thanks! 🙂
I have a fix for this…
after the wp_head()
i pasted this to link it for it to clear cache
<script type='text/javascript' src='http://www.creativehandsmedia.com/larealtyllc/wp-content/plugins/frontpage-slideshow/js/jquery-ui-effects.js?<?php echo time(); ?>'></script>
I’m not good enough to figure this out on the PHP end of it… lol if someone has that I would love to get it!
Mark
(@markmilligan)
Thanks Jerkjone. Great fix and does the job.
Hi markmilligan,
I also have the same problem, could you tell me where exactly you pasted te link Jerkone is telling about.. because i pasted it and it didnt work…
Past it in header.php just after you see the code wp_head()
hi there jerkone!
thanks for your reply!
I tried and tried… but this is what i get
Parse error: syntax error, unexpected ‘<‘ in /public/sites/www.racod.nl/mimifashionland/wp-content/themes/twentyten/header.php on line 60
and this is my code.. i just pasted your code in the header.php
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
<script type=’text/javascript’src=’http://www.creativehandsmedia.com/larealtyllc/wp-content/plugins/frontpage-slideshow/js/jquery-ui-effects.js?<?php echo time(); ?>’>
</script>
?>
</head>
and line 60 is somewhere in your part code….
greets
rcodfried
right. You are going to have to add your snippet to it. Not mine.
<script type='text/javascript'src='insert the directory of your js file here… should be http://www.yoursite.com/…directory of js file… should end with a question mark… `<?php echo time(); ?>’>
</script>`
Thanks once again for your help, but it seems that I still get the same error
Parse error: syntax error, unexpected ‘<‘ in /public/sites/www.racod.nl/mimifashionland/wp-content/themes/twentyten/header.php on line 59
I’ve changed your code into mine:
wp_head();
<script type='text/javascript'src='http://www.racod.nl/mimifashionland/wp-content/plugins/frontpage-slideshow/js/jquery-ui-effects.js?
<?php echo time(); ?>'></script>
?>
</head>
and the strange thing is that ” line 59″ is where your code starts….
I do hope that you can help me….otherwise thank you for your time!
do you natively have wp_head() in your code? if not.. just remove it
Plugin Author
jeff_
(@jeff_)
wp_head NEED to be in <head> !!!!
the error is caused because you idi not close the PHP sippet : just add ?> below the wp_head() like :
wp_head();
?>
<script type='text/javascript'src='http://www.racod.nl/mimifashionland/wp-content/plugins/frontpage-slideshow/js/jquery-ui-effects.js?
<?php echo time(); ?>'></script>
?>
</head>