This user has no favorite topics.
Favorite Forum Topics
Forum Topics Created
| Status |
Topic
|
Supporter | Voices | Posts | Freshness |
|---|---|---|---|---|---|
|
Updating translation causes issues
1
2
Started by: Natalie Wood
in: English Support
Problem: </div> tag is missing after making edits, this might be due to an issue with the current version of the ATE. </div> tag to your HTML as a temporary workaround. Our development team is aware of this issue and a fix will be included in the next ATE update, expected by the end of this month. If there are any delays in the release, we will update you. Please note that this solution might become irrelevant if it's outdated or not applicable to your case. We highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If the problem persists, please open a new support ticket. |
|
1 | 30 | 3 months ago | |
|
Original language is being changed on some images
Started by: Natalie Wood in: English Support |
|
0 | 16 | 6 months, 2 weeks ago | |
|
Some images are being deleted by WPML after translation
1
2
Started by: Natalie Wood in: English Support |
|
0 | 28 | 6 months, 3 weeks ago | |
|
remove
Started by: Natalie Wood
in: English Support
Problem:
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. |
|
0 | 6 | 7 months, 3 weeks ago | |
|
Opening Gravity Forms section in translation management page causes WordPress database error & form …
Started by: Natalie Wood in: English Support |
|
0 | 14 | 9 months ago |