ผู้ใช้รายนี้ไม่มีหัวข้อที่ชื่นชอบ.
หัวข้อฟอรั่มที่ชื่นชอบ
สร้างหัวข้อฟอรัมแล้ว
สถานะ |
หัวข้อ
|
ผู้สนับสนุน | เสียง | กระทู้ | ความสดชื่น |
---|---|---|---|---|---|
Querying menus in different languages with WPML GraphQL
เริ่มโดย: ivanD-50 ใน: English Support |
3 | 5 | 4 months มาแล้ว | ||
hreflang sets the language name correctly, but the language prefix in the href does not change.
เริ่มโดย: ivanD-50 ใน: English Support |
2 | 3 | 7 months, 2 weeks มาแล้ว | ||
Unable to get post translation taxonomy terms using GraphQL
เริ่มโดย: ivanD-50 ใน: English Support |
2 | 6 | 1 years, 4 months มาแล้ว | ||
WPML chat support ticket by ivanD-50 – 1692261547
เริ่มโดย: ivanD-50 ใน: English Support |
1 | 1 |
1 years, 4 months มาแล้ว
|
||
Unable to query a post by a slug with GraphQL
เริ่มโดย: ivanD-50
ใน: English Support
Problem: We encountered an issue querying custom post types by a slug with graphql, and it works only for the posts in the site's default language, e.i. If the site's default language is English, this query for the post will work: query getArticlesByslug { article(id: "the-latest-eng-article", idType: SLUG) { title content } } But if we change the site's default language to say Belarusian, the query will return null. Solution: 1. Add this function to the functions.php file of your theme. add_filter('request', function($vars){ if (isset($vars['graphql']) && !empty($vars['name'])) { $vars['suppress_filters'] = true; } return $vars; }); 2. Save the file and reload the homepage of your site. The issue has been escalated to our developers, and they will try to improve this in future versions of WPML GraphQL Relevant Documentation: https://wpml.org/documentation/related-projects/wpml-graphql/ |
2 | 8 | 1 years, 4 months มาแล้ว |