I got this problem solved by adding the following lines
Code:
// don't rewrite the paypal IPN notify url
if ($page == 'ipn_main_handler.php') {
return $this->buildStockHrefLink($page, $parameters, $connection, $add_session_id, true, $static, $use_dir_ws_catalog);
}
to the file includes\classes\seo\seo.url.php right after
Code:
/**
* don't rewrite pages we should skip
*/
if ($this->plugins->skipSeoUrl($page, $parameters, $connection) === true) {
return $this->buildStockHrefLink($page, $parameters, $connection, $add_session_id, true, $static, $use_dir_ws_catalog);
}
Bookmarks