Thank you for contacting WPML and sharing the details.
To troubleshoot the issue further, I setup a clean test site for you. Can you please login to the test site using the next link then setup WPML and ACF with your custom CPT and Taxonomy then see if the issue is replicable there or not?
hidden link
If the issue is replicable please let me know how I can see/check the issue at my end. Links and Screenshots will help me understand it better.
try to check now.
Go to "immobili" -> post "immobile test" -> check "stato" - "tipologie" - "località" that are taxonomy acf fields, are blank -> disable ACFML -> check now and all tax are OK.
Thank you for your efforts in settingup the test site and explaining the issue in detail.
The issue seem to be related to a known issue that is already being worked upon by our developer. The issue is fixed and should be released in the future ACFML releases.
In the mean time please do the following as explained in the erratum linked next to fix the issue:
- Backup the site completely first to prevent any issues.
- Edit the file /wp-content/plugins/acfml/classes/strategy/repeater-sync/HooksFactory.php inside your WordPress directory in a text editor.
- Look for line 10.
- Replace the following code:
class HooksFactory implements \IWPML_Backend_Action_Loader {
/**
* @return \IWPML_Action[]
*/
public function create() {
- With the following code:
class HooksFactory implements \IWPML_Backend_Action_Loader,IWPML_Deferred_Action_Loader {
/**
* @return string
*/
public function get_load_action() {
return 'wp_loaded';
}
/**
* @return IWPML_Action[]
*/
public function create() {