Support Forum
actually, that image is supposed to be there... its part of theme... not a pleasant background image, but thats what it is in the theme...
the problem is that the theme has some custom js that runs on page load and adds some inline styles to the background to make it display properly... on the forum page, that js is failing with errors...
TypeError: $ is not a function
http://styledinthewild.com/wp-.....js?ver=1.0
Line 31
I suspect its because the theme is breaking wp standards and incorrectly loading its own version of jquery rather than the version of jquery that comes with wp...
<script type='text/javascript' src='http://styledinthewild.com/wp-content/themes/theme1658/js/jquery-1.6.4.min.js?ver=1.6.4'></script>
see: http://codex.simple-press.com/.....-conflict/
so if you fine where in the theme its doing that incorrectly, we can help correct it... likely in the functions.php file...
Visit Cruise Talk Central and Mr Papa's World
No point in sending me page source. I can look at that directly on your site.
And I didn't find the badly loading jQuery in the theme functions file either which is not a good sign as that, really, would be the standard place if you were going to break this particular rule.
So - somewhere else in the theme (probably in the theme) it is loading it;s own, old version of the jQuery library and you really need to find out where. Actually looking through the code for this is probably the only way although having it local and searching with an editor is quicker of course.
YELLOW
SWORDFISH
|
Yes indeed - WordPress came with the latest, up-to-date version of jQuery. And that makes the problem worse when your theme insists on loadings its own copy instead of the WP copy and it is about 3 versions out of date.
You didn't look too hard for the jQuery loading. It was the very first item in the pdf you attached. Find it here:
wp_deregister_script('jquery'); wp_register_script('jquery', get_bloginfo('template_url').'/js/jquery-1.6.4.min.js', false, '1.6.4'); wp_enqueue_script('jquery');
change that code by commenting two of them out as I have done below:
//wp_deregister_script('jquery'); //wp_register_script('jquery', get_bloginfo('template_url').'/js/jquery-1.6.4.min.js', false, '1.6.4'); wp_enqueue_script('jquery');
That at least solves the first problem.
YELLOW
SWORDFISH
|
1 Guest(s)