ليس لدى هذا المستخدم أي مواضيع مفضلة.
مواضيع المنتدى المفضلة
مواضيع المنتدى التي تم إنشاؤها
| الحالة |
الموضوع
|
داعم | الأصوات | المشاركات | الحداثة |
|---|---|---|---|---|---|
|
span html elements added all accross the translated pages
1
2
بدأه: marcoB-134
في: English Support
Problem: Solution: <wpml-config><custom-fields><custom-field action="copy">_elementor_global_variables</custom-field><custom-field action="copy">_elementor_global_classes</custom-field><custom-field action="copy">_elementor_global_classes_labels</custom-field><custom-field action="copy">_elementor_global_classes_order</custom-field></custom-fields></wpml-config> 2. Insert a PHP function into the child theme's functions.php file to handle unmapped global classes: add_filter( 'elementor/atomic-widgets/settings/transformers/classes', 'wpmlsupp13746_resolve_unmapped_global_classes', 20, 1 ); function wpmlsupp13746_resolve_unmapped_global_classes( $classes ) { if ( ! is_array( $classes ) || ! class_exists( '\Elementor\Modules\GlobalClasses\Global_Class_Post' ) ) { return $classes; } foreach ( $classes as $index => $value ) { if ( ! is_string( $value ) || ! preg_match( '/^g-[0-9a-f]{7}$/', $value ) ) { continue; } $post = \Elementor\Modules\GlobalClasses\Global_Class_Post::find_by_class_id( $value ); $label = $post ? $post->get_label() : ''; if ( $label ) { $classes[ $index ] = $label; } } return $classes; }3. After adding the configuration, follow these steps: If this solution does not resolve the issue or seems irrelevant due to updates or different configurations, we 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 at WPML support forum. |
|
0 | 21 | قبل 1 أسبوع، 6 أيام | |
|
Split: span element across the Elementor HTML
بدأه: marcoB-134
في: English Support
Problem: function hotel_spider_form_shortcode() {<br /> ob_start();<br /> ?><br /> <!-- Place your complete HTML, CSS and JavaScript here --><br /> <?php<br /> return ob_get_clean();<br />}<br />add_shortcode( 'hotel_spider_form', 'hotel_spider_form_shortcode' );2. Replace the full HTML and JavaScript in the Elementor HTML widget with the shortcode: 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 | 4 | قبل أسبوعين، 6 أيام | |
|
WPML not detecting strings to translate inside an Elementor Component.
بدأه: marcoB-134
في: English Support
Problem: If this solution does not resolve your issue, or if it seems outdated or irrelevant 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 further assistance is needed, please open a new support ticket at WPML support forum. |
|
0 | 11 | قبل 1 شهر، 3 أسابيع |