can you help us, we imported the products, but it does not show in site, but they are in the database. We have disabled all plugins but nothing is better. Do you have any solution, we don’t know what it could be?
SELECT * FROM rebec_wp_posts WHERE post_type = ‘product’ AND post_title like ‘Armalite%’ ORDER BY post_date DESC;
SELECT * FROM rebec_wp_postmeta where post_id = 23957
SELECT rebec_wp_posts.* FROM rebec_wp_posts LEFT JOIN rebec_wp_term_relationships
ON (rebec_wp_posts.ID = rebec_wp_term_relationships.object_id)
WHERE 1=1
AND
rebec_wp_posts.post_type = ‘product’
AND
(rebec_wp_posts.post_status = ‘publish’)
GROUP BY
rebec_wp_posts.ID
ORDER BY
rebec_wp_posts.post_date DESC;