Plugin slowing down backend product list page
-
I am seeing many slow queries created by Back In Stock Notifier at the woocommerce product list backend page.
`SELECT wp_posts.*
FROM wp_posts
INNER JOIN wp_postmeta
ON ( wp_posts.ID = wp_postmeta.post_id )
WHERE 1=1
AND ( ( wp_postmeta.meta_key = ‘cwginstock_product_id’
AND wp_postmeta.meta_value IN (‘55255’) ) )
AND wp_posts.post_type = ‘cwginstocknotifier’
AND ((wp_posts.post_status <> ‘trash’
AND wp_posts.post_status <> ‘auto-draft’
AND wp_posts.post_status <> ‘wpzoom-hidden’))
GROUP BY wp_posts.ID
ORDER BY wp_posts.post_date DESCWP_Query->get_posts()
Plugin: back-in-stock-notifier-for-woocommerce 0,1060 seconds
This query is loading for every product in the product list so if a hundred products are shown the query time is 10 seconds. Is there any way of deactivating View Subscribers option at the product list page so this query is not executed?
This backend page is core so loading times are really important.Thank you for looking at it
The topic ‘Plugin slowing down backend product list page’ is closed to new replies.