virtualpudding
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Orbit Slider] [Plugin: WP Orbit Slider] Not working on my siteHad another peep. The slide is responsive so will attempt to stretch to the its surrounding div.
I think a potential problem you have….
.post_box { margin: 0 1.1em; }
maybe try zeros margins for this.
Forum: Plugins
In reply to: [WP Orbit Slider] [Plugin: WP Orbit Slider] Not working on my siteHey Gary,
Glad to hear you found some solutions. Like what you’ve done… you managed to style the content sliders. Out-the-box, the captions were the main feature, the content slides more experimental as it takes more work styling them. Happy to see you did it!Have you fixed the image issue as it seems ok in your slider? Do you still have problem?
Also…. you are calling the main jQuery script twice. Definate no no mate.
You already have jQuery v1.7.1 running.
The line you added<script type="text/javascript" src="/nfuzion/js/jquery-1.5.1.min.js"></script>
needs to go. If removing it is affecting another jQuery working, it must mean that plugin doesn’t work with a later version of jQuery.
Remove the code you added and let me know what happens.Cheers
Forum: Plugins
In reply to: [WP Orbit Slider] [Plugin: WP Orbit Slider] Not working on my siteIts been tested as working on all version of 3.2 and the latest 3.3 edition
Forum: Plugins
In reply to: [WP Orbit Slider] [Plugin: WP Orbit Slider] Not working on my siteHi Gary,
Looking at the source-code for https://www.shiftisgoodweb.com/nfuzion/test2/
(the site that the plugin isn’t working)I see…
<script type="text/javascript"> $(window).load(function() { $('#featured').orbit(); }); </script>
This script above appears in the head. Is this hardcoded in the theme or have you added it? Its not outputed from the plugin. This is most probably the route to the problem. Two instance of .orbit() are being called.
The following code…
<?php if ( function_exists( 'add_image_size' ) ) { add_image_size( 'orbit-custom', 970, 338 ); } ?>
Will not show the slider. Its only for changing the default thumbnail size. This should be placed inside your themes functions.php file.
Hope any of this helps.
Let me know how you get on.Forum: Plugins
In reply to: [WP Orbit Slider] WP Orbit Slider works great! Except in IE9Shame you couldn’t support ie but glad to hear you have found a solution you are comfortable with.
All the best with your first custom theme ??
Forum: Plugins
In reply to: [WP Orbit Slider] WP Orbit Slider works great! Except in IE9I’ve tested on ie9 (windows 7).
Tested using the following themes…
Twenty Ten
Twenty Eleven
StarkersAll seems to be working fine. This may be a conflict with other jQuery code. Have you tried deactivating any current plugins that may be injecting jQuery. If that doesn’t highlight problem, it could be ‘theme’ specific jQuery.
Let me know how you get on
Forum: Plugins
In reply to: [WP Orbit Slider] WP Orbit Slider works great! Except in IE9Ok, will look into the problem and post back in a few days. Have a good holiday!
Forum: Plugins
In reply to: [WP Orbit Slider] WP Orbit Slider works great! Except in IE9If you get the chance, load this page in ie9 and see if you get the same results https://foundation.zurb.com/docs/orbit.php
Let me know
Forum: Plugins
In reply to: [WP Orbit Slider] WP Orbit Slider works great! Except in IE9Hey, happy you have found the plugin useful.
I’m unable to test ie9 right now.
This may be a limitation to the jQuery slider itself. This version is the experimental ‘responsive’ version of the slider.Thinking out loud… you could maybe try one of the advanced settings
“Load JS when DOC ready or WINDOW load” set to “window load”.I did a quick google search and someone suggested changing the doc type when they had a problem with ie9
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd">
I’ll look into it and post back asap.
Thanks for the kind words.
Jonny