salubrio
Forum Replies Created
-
@workingclasshero – Check if there’s an update to the Disqus plugin; maybe that fixes it.
If not, apply my fix above and the error will go away — understand there might be unintended consequences, though!
Look at line 1078 of capabilities.php.
My guess is that line contains a function that is being passed an unset variable; you can try checking to see if your variable is set and only calling the function on line 1078 if it is.
Forum: Plugins
In reply to: [Comprehensive Google Map Plugin] jquerey error after wordpress 3.6 updateThis is an important lesson for any would-be plugin developers.
DO NOT try to monkey patch data into a format for which it not suited.
The current (as of this post) version of jQuery is 1.10.2
The author of this plugin thought he would be slick and convert it to a float to do comparison. “1.10.2” is NOT a float; it is a string.
A better way to do it is
var $foo = $.fn.jquery.split('.');Then
$foois an array of["1", "10", "2"]; this can be compared easily to the required minimum version.Unlikely. If you have been “trying to remove the plugins” [sic] and can’t, then you’re doing it wrong or your WP installation is broken.
The process of manually removing a plugin is trivial.
@joolee, was the change you made only to line 22?
Original:
if ( $iwp_action ) {Change:
if ( isset( $iwp_action ) ) {Forum: Plugins
In reply to: Add New Plugin-No Plugins Match Your Request!!!Please don’t post “me too” comments if you have nothing to add on the problem or the solution – it can end up burying the resolution.
Thanks
Forum: Plugins
In reply to: api.wordpress.org plugin info no php output anymore?Would this explain why, when searching for plugins within a standalone WordPress installation, no results are returned?