Open
Reported for: WPML Multilingual CMS 4.6.9
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:
1 2 3 4 5 | <?php add_filter( 'rest_url_prefix' , function () { return 'your-desired-rest-endpoint-prefix' ; }); ?> |