[Title and content edited after seeing different issues pop up and trying to separate them]
I created a cart rule with a product needing to match these conditions:
A certain attribute
A certain product
All customer groups
It has the action of applying the discount to the product of the attribute.
It gives me this error:
Unknown column ‘cp.idproductattrbute’ in ‘on clause’
SELECT cp.`quantity`, cp.`id_product`, pac.`id_attribute`, cp.`id_product_attribute`
FROM `tb_cart_product` cp
LEFT JOIN `tb_product_attribute_combination` `pac` ON cp.`id_product_attrbute` = pac.`id_product_attribute`
WHERE (cp.`id_cart` = 481) AND (cp.`id_product` IN (70,57,41)) AND (cp.`id_product_attribute` > 0)
Question
30knees
[Title and content edited after seeing different issues pop up and trying to separate them]
I created a cart rule with a product needing to match these conditions:
It has the action of applying the discount to the product of the attribute.
It gives me this error:
Unknown column ‘cp.idproductattrbute’ in ‘on clause’
SELECT cp.`quantity`, cp.`id_product`, pac.`id_attribute`, cp.`id_product_attribute` FROM `tb_cart_product` cp LEFT JOIN `tb_product_attribute_combination` `pac` ON cp.`id_product_attrbute` = pac.`id_product_attribute` WHERE (cp.`id_cart` = 481) AND (cp.`id_product` IN (70,57,41)) AND (cp.`id_product_attribute` > 0)
4 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now