ผู้ใช้นี้ไม่มีหัวข้อที่ชื่นชอบ.
หัวข้อฟอรัมที่ชื่นชอบ
หัวข้อฟอรัมที่สร้าง
สถานะ |
หัวข้อ
|
ผู้สนับสนุน | เสียง | โพสต์ | ความใหม่ |
---|---|---|---|---|---|
typeError: undefined is not an object (evaluating 'labels.resultsTruncated.replace')
เริ่มโดย: tarasL ใน: English Support |
|
0 | 4 | 1 months, 1 weeks มาแล้ว | |
Problem with product attribute
1
2
เริ่มโดย: tarasL
ใน: English Support
Problem: /shop/* 4. If these steps do not resolve the issue, it may be helpful to deactivate unrelated plugins and switch to a default theme like Twenty Twenty-One to identify if the issue is related to specific plugins or themes. If the problem persists or if this 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. Additionally, please feel free to open a new support ticket for further assistance at WPML support forum. |
|
1 | 34 | 4 months, 1 weeks มาแล้ว | |
problem with tag
เริ่มโดย: tarasL
ใน: English Support
Problem: If this solution does not apply to your case, or if it seems outdated, please check the related known issues 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 for further assistance. |
|
1 | 84 | 5 months, 2 weeks มาแล้ว | |
problem when translating ACF PRO
เริ่มโดย: tarasL ใน: English Support |
|
0 | 11 | 7 months, 2 weeks มาแล้ว | |
We have encountered an issue with WPML when using Classic Editor
1
2
3
เริ่มโดย: tarasL
ใน: English Support
Problem: Adjust IDs for multilingual functionality . This adjustment should resolve the issue by ensuring that the AJAX requests in Classic Editor correctly recognize the language settings. Please note that this solution might be outdated or not applicable 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. If the problem persists, please open a new support ticket at WPML support forum for further assistance. |
|
2 | 45 | 7 months, 2 weeks มาแล้ว | |
Problem with translating product variations
เริ่มโดย: tarasL ใน: English Support |
|
1 | 6 | 10 months มาแล้ว | |
media title translate
เริ่มโดย: tarasL ใน: English Support |
|
0 | 6 | 10 months, 1 weeks มาแล้ว | |
php error
เริ่มโดย: tarasL
ใน: English Support
Problem: wp-config.php file and ensuring it contains the following line: define('WP_DEBUG_DISPLAY', false); For more information on compatibility and this issue, please visit the official WordPress site: WordPress 5.9 and PHP 8.0-8.1. If this solution does not apply to your case, or if the problem persists, 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 needed, please open a new support ticket at WPML support forum for further assistance. |
|
0 | 2 | 10 months, 2 weeks มาแล้ว | |
aREST API returns null in the title field
เริ่มโดย: tarasL ใน: English Support |
1 | 5 | 10 months, 4 weeks มาแล้ว | ||
variation doesn’t disappear
เริ่มโดย: tarasL ใน: English Support |
|
2 | 2 | 11 months มาแล้ว | |
Problem with attribute translation
1
2
3
เริ่มโดย: tarasL
ใน: English Support
Problem: Solution: Please note that this isn't an officially supported workaround, but is a temporary fix and should be used with great care!! - Take full backup of site and database beforehand. public function get_source_lang( $name, $domain ) { $domain_lang = $this->lang_of_domain->get_language( $domain ); if ( ! $domain_lang ) { $flag = 0 === strpos( $domain, 'admin_texts_' ) || WPML_ST_Blog_Name_And_Description_Hooks::is_string( $name ); $domain_lang = $flag ? $this->sitepress->get_user_admin_language( get_current_user_id() ) : 'en'; } return $domain_lang; } - With: public function get_source_lang( $name, $domain ) { $domain_lang = $this->lang_of_domain->get_language( $domain ); if ( ! $domain_lang ) { $flag = 0 === strpos( $domain, 'admin_texts_' ) || WPML_ST_Blog_Name_And_Description_Hooks::is_string( $name ); $domain_lang = $flag ? $this->sitepress->get_user_admin_language( get_current_user_id() ) : apply_filters('wpml_default_language', NULL ); } return $domain_lang; } - Save the file. - Open wp-content/plugins/woocommerce-multilingual/inc/class-wcml-wc-strings.php for editing. public function add_hooks() { add_action( 'init', [ $this, 'add_on_init_hooks' ] ); // Needs to run before WC registers taxonomies on init priority 5. foreach ( wc_get_attribute_taxonomies() as $tax ) { add_filter( 'woocommerce_taxonomy_args_' . wc_attribute_taxonomy_name( $tax->attribute_name ), function ( $args ) use ( $tax ) { return $this->translate_attribute_labels( $args, $tax->attribute_label ); } ); } } - With the following code: public function add_hooks() { add_action( 'init', [ $this, 'add_on_init_hooks' ] ); // Needs to run before WC registers taxonomies on init priority 5. foreach ( wc_get_attribute_taxonomies() as $tax ) { add_filter( 'woocommerce_taxonomy_args_' . wc_attribute_taxonomy_name( $tax->attribute_name ), function ( $args ) use ( $tax ) { if ( !isset( $_POST["action"] ) || ( $_POST["action"] != "wpml_get_terms_and_labels_for_taxonomy_table" && $_POST["action"] != "wpml_tt_save_labels_translation" ) ) { return $this->translate_attribute_labels( $args, $tax->attribute_label ); } else { return $args; } } ); } } - Save the file. After that: Please note that the issues have been escalated to our dev team for a proper fix in a future release. 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 the problem persists, please open a new support ticket at WPML support forum for further assistance. |
|
2 | 45 | 11 months, 2 weeks มาแล้ว | |
Different orders are translated differently in the section under “Orders” in Woocommerce.
เริ่มโดย: tarasL ใน: English Support |
|
2 | 4 | 1 years มาแล้ว | |
Issue with plugin translation
1
2
…
4
5
เริ่มโดย: tarasL ใน: English Support |
|
3 | 66 | 1 years มาแล้ว | |
When using your plugin there is a high load on the server.
1
2
เริ่มโดย: tarasL ใน: English Support |
|
2 | 21 | 1 years, 3 months มาแล้ว | |
new language problem
เริ่มโดย: tarasL ใน: English Support |
|
1 | 2 | 1 years, 4 months มาแล้ว |