This thread is resolved. Here is a description of the problem and solution.
Problem:
You are experiencing a persistent admin notice 'Change the field group translation setting' on every admin page, despite the field groups being set up correctly and marked as 'translatable'.
Solution:
We recommend adding the following code to your theme's functions.php file to remove the notice:
add_action( 'admin_init', function() {
global $wp_filter;
$hook_name = 'admin_notices';
$priority = 10;
$class_name = 'WPML_ACF_Translatable_Groups_Checker';
$method = 'report_untranslated_groups';
// Make sure this hook is defined and is a WP_Hook object
if ( isset( $wp_filter[ $hook_name ] ) && is_a( $wp_filter[ $hook_name ], 'WP_Hook' ) ) {
$hook = $wp_filter[ $hook_name ];
// Check that priority exists in the callbacks array
if ( isset( $hook->callbacks[ $priority ] ) ) {
// Loop through each callback at that priority
foreach ( $hook->callbacks[ $priority ] as $unique_id => $callback_data ) {
// Each callback's function is stored in $callback_data['function']
$callback = $callback_data['function'] ?? null;
if ( is_array( $callback ) ) {
[$object_or_class, $callback_method] = $callback;
// Match both the method name and the class
if ( $callback_method === $method
&& is_object( $object_or_class )
&& get_class( $object_or_class ) === $class_name
) {
// Remove it!
unset( $hook->callbacks[ $priority ][ $unique_id ] );
}
}
}
}
}
}, 11 );
This code checks for the specific admin notice and removes it. If this solution does not resolve your issue or seems outdated, please check the related known issues, verify the version of the permanent fix, and confirm that you have installed the latest versions of themes and plugins. If the problem persists, we highly recommend opening a new support ticket at WPML support forum.
This is the technical support forum for WPML - the multilingual WordPress plugin.
Everyone can read, but only WPML clients can post here. WPML team is replying on the forum 6 days per week, 22 hours per day.
This topic contains 3 replies, has 0 voices.
Last updated by 4 months ago.
Assisted by: Shekhar Bhandari.