agarmur Posted May 24, 2022 Share Posted May 24, 2022 Bonjour, Je ne suis d'habitude pas du genre à poser des questions sur les forums, car je préfère toujours chercher par moi même. Seulement là, je bloque sur un problème que je ne saisis pas vraiment! J'essaye de récupérer tous les produit cela marche bien : $id_lang = (int)Context::getContext()->language->id; $start = 0; $limit = 100; $order_by = 'id_product'; $order_way = 'DESC'; $id_category = false; $only_active = true; $context = null; $all_products = Product::getProducts($id_lang, $start, $limit, $order_by, $order_way, $id_category, $only_active, $context); sauf que j'ai besoin d'afficher seulement le produit avec une id prédéfini. C'est pour cela que je vous fais appel pour pouvoir essayer de m'aider ! Merci d'avance pour votre aide Link to comment Share on other sites More sharing options...
Eolia Posted May 26, 2022 Share Posted May 26, 2022 $product = new Product($id_product, $id_lang); Pourquoi appeller getProducts() si vous n'en voulez qu'un ? Link to comment Share on other sites More sharing options...
agarmur Posted May 27, 2022 Author Share Posted May 27, 2022 Effectivement erreur bête ! Merci, je vais corriger cela. 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