Hello Support,
I have an issue with swift slider on shop page. When we pass sales_products as query parameters in URL it can’t find any slides.
http://bearandbear333.staging.wpengine.com/shop/?sale_products=on
http://bearandbear333.staging.wpengine.com/shop/
I have print my SQL query may be it will easier for you to identified the issue.
On Shop Page: SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts INNER JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) WHERE 1=1 AND (
wp_term_relationships.term_taxonomy_id IN (4400)
) AND wp_posts.post_type = ‘swift-slider’ AND ((wp_posts.post_status = ‘publish’)) GROUP BY wp_posts.ID ORDER BY wp_posts.post_date DESC LIMIT 0, 5
On shop page with query string:
SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts INNER JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) JOIN wp_postmeta AS pf_price ON wp_posts.ID = pf_price.post_id WHERE 1=1 AND (
wp_term_relationships.term_taxonomy_id IN (4400)
) AND wp_posts.post_type = ‘swift-slider’ AND ((wp_posts.post_status = ‘publish’)) AND ( pf_price.meta_key IN (‘_sale_price’,’_min_variation_sale_price’) AND pf_price.meta_value > 0 ) GROUP BY wp_posts.ID ORDER BY wp_posts.post_date DESC LIMIT 0, 5