JureCuhalev
Forum Replies Created
-
Looks like MonsterInsights renamed a lot of their classes.
Forum: Plugins
In reply to: [Google Analytics Top Content Widget] Doesnt work with last updateWidget displays message: “The “Google Analytics Top Content” widget requires the plugin, “Google Analytics by Yoast”, to be installed and activated.”
Forum: Reviews
In reply to: [Mailchimp List Subscribe Form] Warning Missing argument 3 and Site is slowHi Malachite,
that thread fixes the argument error. Thank you.
Your plugin still makes the site load 10 seconds! As such it is still broken.
-jure
Forum: Plugins
In reply to: [Google Analytics Top Content Widget] Widget works but shortcode doesn'tHaving same problem here. Just using:
<?php echo do_shortcode('[google_top_content pageviews=50 number=10 showhome=no time=2628000 timeval=2]'); ?>
returns
<!-- not using transient --> <ol></ol> <!-- not using transient -->
but the widget works (and is also not using transient). I’ll continue looking through code if I can figure out what’s going on.
I’m trying to build custom rss feed, so it’s not in a context of page/post.
To fix the plugin (it works with these fixes as far as I’ve tested) :
open flickr-photo-post.php
and change beginning of: function flickr_init_method() {
to:// wp_deregister_script( 'jquery' ); // wp_register_script( 'jquery', WP_FLICKR_PLUGIN_URL . "/js/jquery.min.js"); wp_enqueue_script( 'jquery' ); // wp_deregister_script( 'jquery-ui-core' ); // wp_register_script( 'jquery-ui-core', WP_FLICKR_PLUGIN_URL . "/js/jquery-ui.min.js"); wp_enqueue_script("jquery-ui-core"); wp_enqueue_script("jquery-ui-dialog");
(comment out first two wp_deregister_script() and wp_register_script(). This way plugin won’t load older version of jQuery and jQuery UI as newer versions are included in WP 3.3 (and required).
At the end you also added ‘jquery-ui-dialog’ that is required to use dialogs by this plugin.
Then open js/jquery.flickr.js
and at the beginning of file add:
;(function($) {
and at the end
})(jQuery);
(it doesn’t matter where, as long as it’s on the own line and not part of the /* .. */ comment.
That’s it ??
Thanks
Forum: Installing WordPress
In reply to: Zemanta failed to obtain the neccessary information.It looks like your Firefox can’t access our API. Can you please try opening: https://api.zemanta.com/ in your browser?
You should receive: <h1>403 Developer Inactive</h1> message back. If you don’t, something might be blocking your access.
Jure Cuhalev, Zemanta
[email protected]Forum: Plugins
In reply to: Trouble w/ZemantaSorry for your problems with Zemanta. In last few months we’ve greatly increased the reliability of our code and how we work within blogs.
Do you still see the problems? Please contact me – [email protected] with the issues you’re having and I’ll make sure that we fix them ASAP. We do not take breaking blogs lighltly.
Jure Cuhalev, Zemanta
(sorry for late reply, I was unaware of this thread before)