Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Robin, I found this problem too, it appears that the plugin doesn’t work properly with permalinks, if you de-activate permalinks it will work fine, but it is not very elegant ;-(

    I am trying to contact the developer without much success.

    I’ve solve this issue by changing a functions in functions.php

    With the editor you have to change:

    [Code moderated as per the Forum Rules. Please use the pastebin]

    by :

    function wpapl_get_uri() {
    	$current_url = $_SERVER["REQUEST_URI"];
    	$temp_url = explode( "?", $current_url );
    	$current_url = $temp_url[0];
    	if(preg_match("*\\?*",$current_url) == 0)		{ $plus = "?";} else { $plus = "";}
    	return $current_url . $plus;
    }

    It work in my case but maybe you permalinks format is different and it will not work. So make a backup of functions.php before.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: WP Academic People List] Instead of user details I get: Sorry, but you are looking for some’ is closed to new replies.