Sorry I don’t know how to update plugins in the wordpress plugin database, but here’s a fix:
In widget-context.php change this function:
function get_current_url() {
if ($_SERVER[‘REQUEST_URI’] == ”)
$uri = $_SERVER[‘REDIRECT_URL’];
else
$uri = $_SERVER[‘REQUEST_URI’];
$url = (!empty($_SERVER[‘HTTPS’]))
? “https://”.$_SERVER[‘SERVER_NAME’].$uri
: “https://”.$_SERVER[‘SERVER_NAME’].$uri;
if (substr($url, -1) == ‘/’)
$url = substr($url, 0, -1);
return $url;
}
To this one:
function get_current_url() {
$uri = $_SERVER[‘REQUEST_URI’];
if (substr($uri, -1) == ‘/’) $uri = substr($uri, 0, -1);
return $uri;
}
You won’t be able to use the http or https versions of the target by URL anymore, but you shouldn’t be able to anyway because all the widgets are on the same domain.
If I had more time I’d do a proper debug, but I’m in a hurry and wanted to share this because it’s the only plugin that offers this solution and I know plenty of others need it to work!!