Hi,
We’ve “solved” temporaly by modifying WPML code by modifying:
/var/www/html/danysoft/wp-content/plugins/sitepress-multilingual-cms/inc/url-handling/wpml-url-filters.class.php
We changed this function. Not the best solution but it’s working now…
`public function admin_url_filter( $url, $path ) {
if ( ‘admin-ajax.php’ === $path ) {
$url = $this->url_converter->convert_url($url, $this->sitepress->get_current_language());
$url=”http://www.danysoft.com/wp-admin/admin-ajax.php”;
}
return $url;
}
`
I don’t know if you can make some change in your code or it’s only and WPML issue.
Regards
