Aaron Cepek
Forum Replies Created
-
Forum: Plugins
In reply to: [Image Rotator Widget] No slider after updating to 3.9, only spinner showingjQuery no longer supports checking the browser version the way the author is doing it.
So you can fix it yourself…
In the plugin folder edit
/js/dk-image-rotator-widget.js
Replace these lines at the top…
if($.browser.msie && $.browser.version == "8.0") { ie8 = true; } else if($.browser.msie && $.browser.version == "7.0") { jQuery('body').addClass('ie7'); }
With this…
ie8 = navigator.userAgent.match(/msie/i) ? true : false;
It won’t support IE7 anymore but neither should you.
If you update the plugin it will erase this change, but hopefully the next update will have a fix ??
Forum: Reviews
In reply to: [Twitter Widget Pro] not working anymoreThe new twitter API version requires everyone register an app because they are forcing everyone to use their new API 1.1 which requires OAuth. What does all that mean? Go to [your site url]/wp-admin/options-general.php?page=twitterWidgetPro (once the plugin is activated) and there are some links that walk you through the process of getting the keys/tokens from twitter that you need to enter to get the plugin working. It’s a pain but it’s twitters doing, not the plugin developers.
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] Different IDs for top and bottomFor anyone interested in something similar this will get you started
$content = get_the_content(); $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); $content = preg_replace('/addthis_default_style/', 'addthis_default_style addthis_top', $content, 1); echo $content;
instead of
the_content();
This will fix it, but only because it disables the ajax/js form checking. Gets things working for the time being though: https://www.ads-software.com/support/topic/plugin-contact-form-7-spinning-arrows-takes-forever?replies=20#post-1612891
I’m having a similar behavior on a site.
The plugin was working normally then began not showing any of the jQuery based info messages (including sent). The message is sent even though there is no confirmation.
I’ve tried disabling all other plugins, making sure there is only one jQuery source loading… no luck.
Contact Form 7 Version 2.4.6 and WordPress Version 3.2.1
He means below the
<?php wp_head(); ?>
in the<head></head>
section. If you don’t have that in your header you can add it if you want. Put the 2 scripts below that. If you’re still not sure where to put it, make it the last thing before the</head>
tag.I forgot to mention, it fixed the problem for me. Thanks MarcusO!
Ah, that is because it doesn’t appear under Settings! It’s a tricky one. It appears under Plugins drop down. This wasted some of my time too… it should appear Settings (please consider changing it Mr. Imthiaz Rafiq, oh and thanks for the plugin byetheway).