WPML
Status
Open
Reported for
WPML Multilingual CMS 4.6.9
Topic tags
ATE, Bug

Overview of the issue

If you change the default WordPress REST API URL prefix from wp-json to a custom value, it can cause that the Advanced Translation Editor (ATE) doesn’t work correctly, preventing translation jobs from loading.

Workaround

To resolve this issue, add a Must-Use Plugin (mu-plugin) in your …/wp-content/mu-plugins/ directory with the following content:

<?php
add_filter('rest_url_prefix', function () {
	return 'your-desired-rest-endpoint-prefix';
});
?>

All known issues →