Nocebo Posted October 16, 2018 Share Posted October 16, 2018 Bonjour à tous, Je travaille sur prestashop 1.7. J'aimerais récupérer le nom de la catégorie parente ainsi qu'un autre champs que j'ai créé {if isset($product.id_category_default)} {assign var='catnameq' value=Category::getCategoryInformations(array($product.id_category_default))} 1 id_category : {$catnameq[$product.id_category_default].id_category}<br /> 2 name : {$catnameq[$product.id_category_default].name}<br /> 3 id_lang : {$catnameq[$product.id_category_default].id_lang}<br /> 4 color_cat : {$catnameq[$product.id_category_default].color_cat}<br /> 5 link_rewrite : {$catnameq[$product.id_category_default].link_rewrite}<br /> {/if} J'arrive à tout afficher avec ce code sauf le 4 qui est justement celui dont j'ai besoin, quelqu'un aurait-il une idée du pq ? Merci d'avance pour votre aide Link to comment Share on other sites More sharing options...
Nocebo Posted October 18, 2018 Author Share Posted October 18, 2018 up Link to comment Share on other sites More sharing options...
hhennes Posted October 19, 2018 Share Posted October 19, 2018 Bonjour, C'est tout simplement car la fonction getCategoryInformations ne renvoie pas votre attribut custom. Cf. https://github.com/PrestaShop/PrestaShop/blob/develop/classes/Category.php#L2023 Mais uniquement le nom, l'id_lang et le lien Cordialement, Hervé 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