ABCDino Posted January 14, 2020 Share Posted January 14, 2020 (edited) Bonjour, Sur prestashop 1.7, un produit est ajouté au panier grace à un bouton. C'est un formulaire dont le code HTML ressemble à <form action="http://localhost/monsite/panier" method="post" id="add-to-cart-or-refresh"> <input type="hidden" name="token" value="559b0bbb4cdhewlc7eb88c02b239497e"> <input type="hidden" name="id_product" value="1" id="product_page_product_id"> <input type="hidden" name="id_customization" value="0" id="product_customization_id"> <div class="product-variants"></div> <div class="product-add-to-cart"> <span class="control-label">Quantité</span> ... <div class="add"> <button class="btn btn-primary add-to-cart" data-button-action="add-to-cart" type="submit"> Ajouter au panier </button> </div> ... </div> </form> Je souhaiterai modifier ce formulaire (rajouter un champ 'hidden'). Mais je ne trouve pas le fichier php qui traite le formulaire ! Merci de votre aide Edited January 16, 2020 by ABCDino (see edit history) Link to comment Share on other sites More sharing options...
Mediacom87 Posted January 14, 2020 Share Posted January 14, 2020 Link to comment Share on other sites More sharing options...
coeos.pro Posted January 14, 2020 Share Posted January 14, 2020 Il y a 12 heures, ABCDino a dit : Je souhaiterai modifier ce formulaire (rajouter un champ 'hidden'). Mais je ne trouve pas le fichier php qui traite le formulaire ! attention il y a 2 fichiers : un pour afficher ce formulaire et un pour le traitement. Commencez par aller dans préférences > SEO & URLs et mettez non pour URL simplifiée et vous verrez action="http://localhost/monsite/panier" afficher l'url du fichier qui traite le formulaire Link to comment Share on other sites More sharing options...
ABCDino Posted January 15, 2020 Author Share Posted January 15, 2020 [SOLUTION] Suite à la mise en place de l'URL non simplifié, (arrière-boutique->préférences->Traffic et SEO->URL simplifié = NON) j'ai pu voir que l'URL se transforme ainsi http://localhost/monsite/panier ==> http://localhost/monsite/index.php?controller=cart J'ai donc pu modifier /controllers/front/CartController.php pour ajouter les champs qui me conviennent, en s'inspirant de ce qui existe déjà. Merci à vous [SOLUTION] 1 Link to comment Share on other sites More sharing options...
Mediacom87 Posted January 15, 2020 Share Posted January 15, 2020 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