HarmPresta Posted July 26, 2018 Share Posted July 26, 2018 (edited) Hello, I made new attributes for my products, but they don't show up when I want to choose them in combinations. I don't know how to fix this issue, maybe somebody knows it. Cleared cache, tried another browser. -edit When I add a new color it doesn't appear in the color tab. Edited August 2, 2018 by HarmPresta (see edit history) Link to comment Share on other sites More sharing options...
HarmPresta Posted July 30, 2018 Author Share Posted July 30, 2018 I found the problem... open in /src/PrestaShopBundle/Controller/Admin/ProductController.php $attributeGroups = $this->getDoctrine()->getManager()->getRepository('PrestaShopBundle:Attribute')->findByLangAndShop(1, 1);set in FindByLangAndShop(you language id, you shop id)I had a new language installed, with ID 4, changed ->findByLangAndShop(1, 1); to ->findByLangAndShop(4, 1); and all works fine now. Link to comment Share on other sites More sharing options...
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