Người dùng này không có chủ đề yêu thích.
Chủ đề diễn đàn yêu thích
Chủ đề diễn đàn đã được tạo
Trạng thái |
Đề tài
|
Người ủng hộ | Tiếng nói | Bài viết | Độ tươi |
---|---|---|---|---|---|
Korrektur von übersetzten placeholder Wörter
Bắt đầu bởi: marcoP-123 tRONG: Unterstützung in Deutsch |
0 | 7 | 2 days, 18 hours trước | ||
WP Filter widget – Übersetzung wird nicht angezeigt
Bắt đầu bởi: marcoP-123
tRONG: Unterstützung in Deutsch
Problem: Falls diese Lösung veraltet ist oder nicht auf Ihr Problem zutrifft, empfehlen wir Ihnen, ein neues Support-Ticket zu öffnen. Wir empfehlen auch, die bekannten Probleme zu überprüfen, die Version der dauerhaften Lösung zu verifizieren und zu bestätigen, dass Sie die neuesten Versionen von Themes und Plugins installiert haben. Für weitere Unterstützung besuchen Sie bitte unser Support-Forum. |
0 | 9 | 2 weeks trước | ||
Translation queue – Übersetzungen verbleiben im Status “in progress”
Bắt đầu bởi: marcoP-123 tRONG: Unterstützung in Deutsch |
1 | 11 | 4 weeks, 1 days trước | ||
BuddyBoss Profil type übersetzungen Fehlerhaft
Bắt đầu bởi: marcoP-123
tRONG: Unterstützung in Deutsch
Problem: Falls diese Lösung veraltet erscheint oder nicht auf Ihr Problem zutrifft, empfehlen wir, die neuesten Versionen Ihrer Themes und Plugins zu überprüfen und bei weiteren Fragen ein neues Support-Ticket zu eröffnen. Wir empfehlen auch, die Seite mit bekannten Problemen zu besuchen: https://wpml.org/known-issues/. Für weitere Unterstützung können Sie sich gerne an unser Support-Forum wenden: https://wpml.org/forums/forum/deutsch/. |
0 | 14 | 4 weeks, 1 days trước | ||
Translation queue is not loading
Bắt đầu bởi: marcoP-123 tRONG: English Support |
2 | 33 | 1 months, 2 weeks trước | ||
Translation and sync of the various Navigation Menu’s does not work anymore
Bắt đầu bởi: marcoP-123 tRONG: Unterstützung in Deutsch |
0 | 2 | 1 months, 2 weeks trước | ||
Split: Translation and sync of the various Navigation Menu's does not work anymore
Bắt đầu bởi: marcoP-123
tRONG: English Support
Problem: If these steps do not resolve the issue or if the solution 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. Should the problem persist, please open a new support ticket at WPML support forum for further assistance. |
0 | 4 | 1 months, 4 weeks trước | ||
Translation Job loading failed
Bắt đầu bởi: marcoP-123 tRONG: Chat Support |
1 | 1 |
2 months, 3 weeks trước
|
||
BuddyBoss Groups – New created Group get the wrong language flag on strings
Bắt đầu bởi: marcoP-123
tRONG: English Support
Problem: This solution might be outdated or not applicable to your case. We recommend that you check the known issues, confirm the version of the permanent solution and make sure that you have the latest versions of themes and plugins installed. If the problem persists, do not hesitate to open a new support ticket by visiting our support forum. |
2 | 3 | 4 months trước | ||
Fatal error in secondary languages when WPML and Learndash are enabled
Bắt đầu bởi: marcoP-123
tRONG: English Support
Problem: Solution: 1. Go to WPML -> String Translation. This will display the incorrect translations that are missing the 's' in the placeholder. These translations need correction to conform to the proper usage of sprintf. If you're experiencing this issue, please also try updating the LearnDash translations under LearnDash LMS > Settings > Translations. If the problem persists, contact LearnDash support for further assistance with correcting the translations containing placeholders. Please note that this solution might be irrelevant if it's outdated or not applicable to your case. If the issue persists, we highly recommend checking related known issues, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If necessary, do not hesitate to open a new support ticket with us for further assistance. |
2 | 6 | 8 months, 3 weeks trước | ||
Fatal error: Uncaught ValueError: Missing format specifier at end of string
Bắt đầu bởi: marcoP-123 tRONG: English Support |
2 | 2 | 8 months, 3 weeks trước | ||
FacetWP and ACF issue with translation of checkbox choices
1
2
Bắt đầu bởi: marcoP-123
tRONG: English Support
Problem: FacetWP - translated checkbox labels are not rendered with shortcodes. Steps to replicate the issue The ACF phase 1. Create a field group and add a checkbox field to it. 2. In the Choices field, add at least one choice; for example like this boy : Boy. 3. Save the field group. The WordPress phase 1. Create a post and select the checkbox's choices and publish the post. The FacetWP phase 1. Go to Settings -> FacetWP. 2. Add a new Facet: Ensure to select Facet type = Checkbox and Data source = [Field group name] Field name. 3. Save and copy the shortcode. The Elementor phase 1. Edit the post with Elementor. 2. Add a Shortcode element and insert the Facet shortcode. 3. Add a `Posts` element. And under the FacetWP section `Enable FacetWP`. 4. Save the changes. The WPML phase 1. Translate the post with the Advanced Translation Editor. 2. Add translation to the checkbox labels, and complete the translation. 3. Check the translated post on the front end and see that the checkbox labels are not showing the translation. A workaround solution: 1. Take a backup of your site in case something goes wrong. 2. Add the following function to the functions.php file of your theme and save the changes. // WPML Workaround for compsupp-6751 function wpml_compsupp6751_translate_facet_display_value( $label, $args ) { if ( class_exists('Sitepress') ) { $wpml_default_lang = apply_filters('wpml_default_language', NULL ); $wpml_current_lang = apply_filters( 'wpml_current_language', NULL ); if ($wpml_default_lang == $wpml_current_lang ) { do_action( 'wpml_register_single_string', 'FacetWP', 'Facet Display Value : '.substr($label, 0, 10), $label ); } // Apply the translation to the string $label = apply_filters('wpml_translate_single_string', $label , 'FacetWP', 'Facet Display Value : '.substr($label, 0, 10) ); } return $label; } add_filter( 'facetwp_facet_display_value', 'wpml_compsupp6751_translate_facet_display_value', 10, 2 ); 3. On the front end, visit the page with the ACF fields in the original language. This will register the strings into Strings Translation. 4. Go to WPML -> Strings Translation and filter to show the FacetWP domain. Under it, you will find the strings with the name "Facet Display Value : *name". Those will be the label of the checkbox strings. Translate them into the other language. Our compatibility team has contacted the FacedWP plugin developers, and we are trying to cooperate with them to solve this issue. |
2 | 19 | 1 years, 8 months trước | ||
Site will not connect, using the key
Bắt đầu bởi: marcoP-123 tRONG: English Support |
2 | 2 | 1 years, 11 months trước |