למשתמש זה אין נושאים מועדפים.
נושאי פורום מועדפים
נושאי פורום שנוצרו
סטטוס |
נושא
|
תומך | קולות | פוסטים | טריות |
---|---|---|---|---|---|
My translations are very often stuck "in progress" or "waiting for translators"
נפתח על ידי: alexisR-11
ב: 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 | לפני 5 חודשים, שבוע 1 | |
can't translate permalinks
נפתח על ידי: alexisR-11
ב: 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 | לפני 5 חודשים, שבוע 1 | |
WooCommerce Multilingual & Multicurrency Troubleshooting tab not fixing issue
נפתח על ידי: alexisR-11
ב: 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 | לפני 5 חודשים, שבוע 1 | |
I want the translation column to be always shown on the product list in the admin area
נפתח על ידי: alexisR-11
ב: 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 | לפני 5 חודשים, 2 שבועות |