Hi @mbis,
Found one fix that after removing one condition that was added in 2.3.0 version in file ‘permalink-manager-uri-functions-post.php‘ in function ‘url_to_postid‘.
public function url_to_postid( $url ) {
global $pm_query;
// Filter only defined URLs
if ( empty( $url ) || ! is_array( $pm_query ) ) {
return $url;
}
Removing the condition to check is_array made it work. This was added in latest update version 2.3.0. Is there any issue with that condition?