ACF Content with WPML not saving [closed]

I’ve had a fair share of issues with ACF, but end up using it still.

There could be 3 things causing your problem.

you could try changing your php settings:

max_input_time = 42000
max_execution_time = 42000
max_input_vars = 50000

This next one is not a great fix as if WordPress ever decides to update their tables it could cause problems (but that hasn’t happened yet):

wp_options table, option_name column -> increase length from 64 to something else, like 255

More painfully you need to shorten your field names. If you’re using something like my_super_cool_extra_amazing_language_field, acf starts taking a lot memory. Shorten all field names.

This is all of course assuming you’re not using any special functions to save the field as i wouldn’t be able to test those with out seeing them.