So,
I have installed and used relevassi for quite a while, and i have been completely happy with it.
But i have run into an issue that seems rather strange to me.
I have a webshop where we sell a bunch of diffrent things, one of them being alu-profiles for LED strips.
When i search for the name of specific profiles they appear as normal and it works perfectly.
(Examples to search for could be: Pds4,obit,3035,giza) All of theese work normally.
But when i search for “Piko” which is another profile we have it get’s a critical error.
I have re-indexed.
I have uninstalled the plugin, then reinstalled, then re-indexed.
Yes the product actually exsists (https://shop.danmind.com/vare/piko-profile/)
Here is my query:
SELECT post.ID FROM shopposts post LEFT JOIN shopposts parent ON (post.post_parent=parent.ID) WHERE (post.post_status IN (‘publish’,’draft’,’private’,’pending’,’future’) OR (post.post_status=’inherit’ AND( (parent.ID is not null AND (parent.post_status IN (‘publish’,’draft’,’private’,’pending’,’future’))) OR (post.post_parent=0) ) )) AND post.post_type IN (‘post’, ‘page’, ‘attachment’, ‘product’, ‘product_variation’) AND post.ID NOT IN (SELECT ID FROM shopposts WHERE post_type = ‘attachment’ AND post_mime_type LIKE ‘image%’ ) AND post.ID NOT IN (SELECT object_id FROM shopterm_relationships WHERE object_id = post.ID AND term_taxonomy_id IN (6)) ORDER BY post.ID DESC LIMIT 0
The page I need help with: [log in to see the link]
