このユーザーにはお気に入りのトピックがありません。
お気に入りのフォーラムトピック
作成したフォーラムトピック
ステータス |
トピック
|
サポーター | 声 | 投稿 | 新着度 |
---|---|---|---|---|---|
Error in WP Dasboard – saying my live site is a duplicate of a non existant domain
開始者:justinK-16 カテゴリ:English Support |
|
1 | 10 | 13時間、 57分前 | |
Translation status not changing after translating
1
2
開始者:justinK-16 カテゴリ:English Support |
|
0 | 26 | 1週、 5日前 | |
Split: Shortcodes not staying in translation memory permanently -the problem persists
開始者:justinK-16 カテゴリ:English Support |
|
0 | 17 | 1ヶ月前 | |
Translated URL structure appearing differently in different locations
1
2
開始者:justinK-16
カテゴリ:English Support
Problem: Solution: Additionally, there is a workaround provided by our compatibility team: .../wp-content/plugins/unlimited-elements-for-elementor/provider/provider_params_processor.class.php 2. Locate the getPostMainCategory function on line 574. If these steps do not resolve your 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. If the problem persists, please open a new support ticket at WPML support forum for further assistance. |
|
0 | 17 | 1ヶ月前 | |
Translating a Custom Field
開始者:justinK-16 カテゴリ:English Support |
|
0 | 14 | 2ヶ月、 1週前 | |
Shortcodes not staying in translation memory permanently
開始者:justinK-16 カテゴリ:English Support |
|
3 | 17 | 2ヶ月、 3週前 | |
Existing Issue of Shortcodes disappearing from already translated segments in the ATE
開始者:justinK-16 カテゴリ:English Support |
|
0 | 3 | 2ヶ月、 4週前 | |
Translate Sidebar images
開始者:justinK-16
カテゴリ:English Support
Problem: 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. |
|
0 | 6 | 3ヶ月前 | |
Images with a link not appearing in ATE for URL translation
開始者:justinK-16
カテゴリ:English Support
Problem: Solution: <wpml-config><br /><elementor-widgets><br /><widget name="image"><br /><fields><br /><field>image>alt</field><br /><field>link>url</field><br /></fields><br /></widget><br /></elementor-widgets><br /></wpml-config> After applying this XML, you should be able to see the URLs correctly in the ATE. Please complete the translation of the post and verify if the URLs are translated correctly on the front end. 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. |
|
1 | 22 | 3ヶ月前 | |
ATE wil not load – Unable to retrieve job details
開始者:justinK-16
カテゴリ:English Support
Problem: |
|
1 | 5 | 3ヶ月、 1週前 | |
Post appearing twice in the ATE
1
2
開始者:justinK-16
カテゴリ:English Support
Problem: |
|
2 | 28 | 10ヶ月、 3週前 | |
Unlimited Elements Post Grid Post Query Field does not appear for translation
1
2
開始者:justinK-16
カテゴリ:English Support
Problem: If this solution does not resolve your issue or seems outdated, we highly recommend checking for 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 do not hesitate to open a new support ticket at WPML support forum for further assistance. |
|
2 | 30 | 11ヶ月、 3週前 | |
Translating Scripts
1
2
3
開始者:justinK-16
カテゴリ:English Support
Problem: If this solution does not apply to your case, or if it 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. Should you need further assistance, please do not hesitate to open a new support ticket at WPML support forum. |
|
2 | 39 | 1年前 | |
Unlimited Elements Post Grid Post Query Field does not appear for translation
開始者:justinK-16
カテゴリ:English Support
Problem: // WPML Workaround for compsupp-7445<br />add_filter('elementor/frontend/before_render', 'wpml_compsupp7445_filter_ucaddon_post_grid');<br /><br />function wpml_compsupp7445_filter_ucaddon_post_grid($element) {<br /> if ('ucaddon_post_grid' !== $element->get_name() ) {<br /> return;<br /> }<br /> $settings = $element->get_settings();<br /> if (isset($settings['post_list_manual_select_post_ids']) && is_array($settings['post_list_manual_select_post_ids'])) {<br /> foreach ($settings['post_list_manual_select_post_ids'] as $key => $id) {<br /> $post_type = get_post_type($id);<br /> if (!$post_type) {<br /> continue;<br /> }<br /> $id = apply_filters('wpml_object_id', $id, $post_type, true);<br /> unset($settings['post_list_manual_select_post_ids'][$key]);<br /> $settings['post_list_manual_select_post_ids'][] = $id;<br /> }<br /> $element->set_settings('post_list_manual_select_post_ids', $settings['post_list_manual_select_post_ids']);<br /> }<br /> if (isset($settings['post_list_manual_post_ids_dynamic'])) {<br /> if (is_string($settings['post_list_manual_post_ids_dynamic'])) {<br /> $settings['post_list_manual_post_ids_dynamic'] = explode(',', $settings['post_list_manual_post_ids_dynamic']);<br /> }<br /> if (is_array($settings['post_list_manual_post_ids_dynamic'])) {<br /> foreach ($settings['post_list_manual_post_ids_dynamic'] as $key => $id) {<br /> $post_type = get_post_type($id);<br /> if (!$post_type) {<br /> continue;<br /> }<br /> $translated_id = apply_filters('wpml_object_id', $id, $post_type, true);<br /> $settings['post_list_manual_post_ids_dynamic'][$key] = $translated_id;<br /> }<br /> $element->set_settings('post_list_manual_post_ids_dynamic', $settings['post_list_manual_post_ids_dynamic']);<br /> }<br /> }<br />} If this solution does not resolve your issue or seems irrelevant due to updates or differences in your setup, we 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 with us. |
|
2 | 9 | 1年前 | |
Unrelated Meta Fields appearing in ATE when translating Elementor Templates
開始者:justinK-16
カテゴリ:English Support
Problem: If the solution provided here does not resolve your issue or seems irrelevant due to updates or differences in 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 further assistance is needed, please open a new support ticket. |
|
2 | 5 | 1年前 |