ผู้ใช้รายนี้ไม่มีหัวข้อที่ชื่นชอบ.
หัวข้อฟอรั่มที่ชื่นชอบ
สร้างหัวข้อฟอรัมแล้ว
สถานะ |
หัวข้อ
|
ผู้สนับสนุน | เสียง | กระทู้ | ความสดชื่น |
---|---|---|---|---|---|
My translations are very often stuck "in progress" or "waiting for translators"
เริ่มโดย: alexisR-11 ใน: English Support |
0 | 2 | 2 days, 10 hours มาแล้ว | ||
can’t translate permalinks
เริ่มโดย: alexisR-11 ใน: English Support |
0 | 8 | 2 days, 14 hours มาแล้ว | ||
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 | 2 days, 16 hours มาแล้ว | ||
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 | 6 days, 20 hours มาแล้ว |