Người dùng này không có chủ đề yêu thích nào.
Chủ đề diễn đàn yêu thích
Chủ đề diễn đàn đã tạo
| Trạng thái |
Chủ đề
|
Người hỗ trợ | Ý kiến | Bài viết | Mới nhất |
|---|---|---|---|---|---|
|
My translations are very often stuck “in progress” or “waiting for translators”
Được bắt đầu bởi: alexisR-11
trong: English Support
Problem: If this solution does not apply to your case, or if it seems outdated, please check the related known issues and verify the version of the permanent fix. Ensure 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 for further assistance. |
|
0 | 2 | 9 months, 2 weeks trước | |
|
can’t translate permalinks
Được bắt đầu bởi: alexisR-11
trong: English Support
Problem: If the solution provided here becomes irrelevant due to updates or does not apply to your specific 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 these steps not resolve your issue, please do not hesitate to open a new support ticket at WPML support forum for further assistance. |
|
0 | 8 | 9 months, 2 weeks trước | |
|
WooCommerce Multilingual & Multicurrency Troubleshooting tab not fixing issue
Được bắt đầu bởi: alexisR-11
trong: 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 the problem persists, please open a new support ticket at WPML support forum for further assistance. |
|
0 | 5 | 9 months, 2 weeks trước | |
|
I want the translation column to be always shown on the product list in the admin area
Được bắt đầu bởi: alexisR-11
trong: English Support
Problem: function force_wpml_languages_column_visibility() {<br /> if (!function_exists('get_current_screen') || !is_admin()) {<br /> return;<br /> }<br /> $screen = get_current_screen();<br /> if ($screen && $screen->id === 'edit-product') {<br /> $user_id = get_current_user_id();<br /> $hidden_columns = get_user_meta($user_id, 'manageedit-productcolumnshidden', true);<br /> if (is_array($hidden_columns) && ($key = array_search('icl_translations', $hidden_columns)) !== false) {<br /> unset($hidden_columns[$key]);<br /> update_user_meta($user_id, 'manageedit-productcolumnshidden', $hidden_columns);<br /> }<br /> }<br />}<br />add_action('admin_init', 'force_wpml_languages_column_visibility', 20);2. To ensure the translation icons are reinitialized correctly, add this additional function: function reinitialize_wpml_translation_icons() {<br /> $screen = get_current_screen();<br /> if ($screen && $screen->id === 'edit-product') {<br /> ?><br /> <script type="text/javascript"><br /> jQuery(document).ready(function($) {<br /> setTimeout(function() {<br /> if (typeof WPML_Translate_Link_Targets !== 'undefined') {<br /> WPML_Translate_Link_Targets.init();<br /> }<br /> }, 500);<br /> });<br /> </script><br /> <?php<br /> }<br />}<br />add_action('admin_footer', 'reinitialize_wpml_translation_icons');Please test this solution in a staging environment before applying it to your live site, as this custom code is a courtesy and not officially supported by us. If this solution does not resolve your issue or seems outdated, 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 | 5 | 9 months, 2 weeks trước |