Matt Lowe
Forum Replies Created
-
Forum: Plugins
In reply to: [TheThe Tabs and Accordions] Tabs suddenly not workingHi kinghamid, did you try my fix above?
TheThe Tabs has vanished from the plugins directory which would suggest that TheThe Fly have no intention of making any updates to it. I’ve written about the issue, you can read about it on my WordPress web design blog.
Forum: Plugins
In reply to: [TheThe Tabs and Accordions] TheThe Tabs and Accordions Broke and GoneIt’s annoying, isn’t it?
If you’re interested I spent the weekend finding a suitable drop-in replacement for doing the accordion side of things, I’ve shared my findings on my blog (http://squelchdesign.com/web_design_newbury/replacement-thethe-tabs-and-accordions-how-to/) and even created a video tutorial demonstrating how to replace TheThe Tabs and Accordions with an alternative (http://youtu.be/hi9CAcuJ40A).
Forum: Plugins
In reply to: [TheThe Tabs and Accordions] Tabs suddenly not workingHi piotrek, well spotted. This update will stop the temporary fix from interfering with the admin interface:
function thethe_fix() { $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https:" : "http:"; wp_deregister_script('jquery'); wp_enqueue_script("jquery", $protocol."//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js", array('json2'), '1.8.3'); } if (!is_admin()) add_action( 'wp_print_scripts', 'thethe_fix', 20 );There is a thread on their support forum regarding the issue, but I’ve not seen any official update from TheTheFly yet.
Forum: Plugins
In reply to: [TheThe Tabs and Accordions] Tabs suddenly not workingPost UI Tabs works in my lab. Checking the code it is pulling in version 1.8.3 (shipped with WP 3.5), same as my workaround above (except I pull it in from Google APIs).
jQuery UI Widgets has a clear disclaimer on the plugin page:
“Important! This Plugin requires WordPress 3.5 as it uses the jQuery UI 1.9 library shipped with this version of WordPress.”
So it is using the shipped version of jQuery UI, not the version on Google APIs. On installing I can verify it doesn’t pull in jQuery from Google APIs. I’ve not tested it, but I would expect it to work.
Forum: Plugins
In reply to: [TheThe Tabs and Accordions] Tabs suddenly not workingYes, don’t leave this on your site indefinitely as it locks your site down to v1.8.3 of jQuery. If you just leave it on there then it will undoubtedly cause problems with other plugins somewhere in the future. A month sounds like a good period, or if you see an update for TheTheFly Tabs & Accordions then take this off.
The issue, at a quick glance, appears to be either an incompatibility between the latest version of jQuery and the plugin, or perhaps between the latest version of jQuery and jQuery UI. Hopefully we’ll see an update to the plugin, jQuery UI or jQuery itself in the near future and, when we do, this workaround will no longer be necessary.
Forum: Plugins
In reply to: [TheThe Tabs and Accordions] Tabs suddenly not workingfunction thethe_fix() { $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https:" : "http:"; wp_deregister_script('jquery'); wp_enqueue_script("jquery", $protocol."//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js", array('json2'), '1.8.3'); } add_action( 'wp_print_scripts', 'thethe_fix', 20 );Ah, just tried my previous code block on WP 3.4.1 and it behaves as you suggested. This updated version should see you right.
Forum: Plugins
In reply to: [TheThe Tabs and Accordions] Tabs suddenly not workingOdd, sounds like for you it’s deregistering jquery but not re-registering it. What’s your site URL?
Forum: Plugins
In reply to: [TheThe Tabs and Accordions] Tabs suddenly not workingLooks like an incompatibility with the latest version of jQuery as pulled in through googleapis. The plugin pulls in the latest version automatically, add this to your theme’s functions.php as a temporary workaround until the plugin is fixed:
function thethe_fix() { wp_deregister_script('jquery'); wp_enqueue_script("jquery", "//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js", array('json2'), '1.8.3'); } add_action( 'wp_print_scripts', 'thethe_fix', 20 );[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your posted code may now have been permanently damaged/corrupted by the forum’s parser.]
Note that this will fix your site onto version 1.8.3 of jQuery, which might not be a good thing long term.
Forum: Plugins
In reply to: [WordPress Move] Is WordPress Move compatible with WordPress 3.5Actually to be fair I’ve just managed to do a migration without issue, but I had to select every single file in the source machine’s installation except for wp-settings.php and wp-config.php. For some reason not including all files between identical builds of WordPress upsets the database …? *confused*
Forum: Plugins
In reply to: [WordPress Move] Is WordPress Move compatible with WordPress 3.5I’m having problems with it since moving to WP3.5. It’s just bricked a site (“One or more database tables are unavailable. The database may need to be repaired”). I was only rebuilding it because WP Move had done something odd to the site earlier in the day preventing me from logging in (“You do not have sufficient permissions to access this page”).
I’d also like to see this fixed. When I specify active=false it opens the last item. Tried all sorts:
active="false" active=-1 active=""Can’t get it to work at all!