Woocommerce 和 Yoast 产品搜索错误
Woocommerce and Yoast product search error
我一直在尝试在管理区域中使用产品搜索,它以前工作正常,现在我收到以下错误:
SELECT DISTINCT posts.ID as product_id, posts.post_parent as parent_id FROM mu05iq_posts posts
LEFT JOIN mu05iq_wc_product_meta_lookup wc_product_meta_lookup ON posts.ID = wc_product_meta_lookup.product_id
LEFT JOIN mu05iq_wc_product_meta_lookup parent_wc_product_meta_lookup
ON posts.post_type = 'product_variation' AND parent_wc_product_meta_lookup.product_id = posts.post_parent
WHERE posts.post_type IN ('product','product_variation')
AND ( ( ( posts.post_title LIKE '%fiber%') OR ( posts.post_excerpt LIKE '%fiber%') OR ( posts.post_content LIKE '%fiber%' ) OR ( wc_product_meta_lookup.sku LIKE '%fiber%' ) OR ( wc_product_meta_lookup.sku = "" AND parent_wc_product_meta_lookup.sku LIKE '%fiber%' ) ))
ORDER BY posts.post_parent ASC, posts.post_title ASC
WordPress database error: [Unknown column '1' in 'where clause']
SELECT COUNT( 1 ) FROM mu05iq_postmeta WHERE post_id IN( SELECT ID FROM mu05iq_posts WHERE post_type = 'product' ) && meta_value = "1" AND meta_key = '_yoast_wpseo_is_cornerstone'
如果有人有任何想法,我将不胜感激。
谢谢和问候。
如果有人遇到这个问题,这是一个数字海洋管理的数据库设置,当您创建数据库集群时,它会在全局 SQL 模式下设置一些设置,只需删除 ANSI_QUOTES。这解决了我的问题。
我一直在尝试在管理区域中使用产品搜索,它以前工作正常,现在我收到以下错误:
SELECT DISTINCT posts.ID as product_id, posts.post_parent as parent_id FROM mu05iq_posts posts
LEFT JOIN mu05iq_wc_product_meta_lookup wc_product_meta_lookup ON posts.ID = wc_product_meta_lookup.product_id
LEFT JOIN mu05iq_wc_product_meta_lookup parent_wc_product_meta_lookup
ON posts.post_type = 'product_variation' AND parent_wc_product_meta_lookup.product_id = posts.post_parent
WHERE posts.post_type IN ('product','product_variation')
AND ( ( ( posts.post_title LIKE '%fiber%') OR ( posts.post_excerpt LIKE '%fiber%') OR ( posts.post_content LIKE '%fiber%' ) OR ( wc_product_meta_lookup.sku LIKE '%fiber%' ) OR ( wc_product_meta_lookup.sku = "" AND parent_wc_product_meta_lookup.sku LIKE '%fiber%' ) ))
ORDER BY posts.post_parent ASC, posts.post_title ASC
WordPress database error: [Unknown column '1' in 'where clause']
SELECT COUNT( 1 ) FROM mu05iq_postmeta WHERE post_id IN( SELECT ID FROM mu05iq_posts WHERE post_type = 'product' ) && meta_value = "1" AND meta_key = '_yoast_wpseo_is_cornerstone'
如果有人有任何想法,我将不胜感激。 谢谢和问候。
如果有人遇到这个问题,这是一个数字海洋管理的数据库设置,当您创建数据库集群时,它会在全局 SQL 模式下设置一些设置,只需删除 ANSI_QUOTES。这解决了我的问题。