Massimo333 Posted May 8 Share Posted May 8 Sur une page produit prestashop, comment puis-je obtenir le prix d'un produit avec jquery ? Link to comment Share on other sites More sharing options...
Eolia Posted May 8 Share Posted May 8 Récupérez la valeur du champ $('our_price_display') Link to comment Share on other sites More sharing options...
Knowband Plugins Posted May 8 Share Posted May 8 Salut, Veuillez utiliser le code jQuery ci-dessous pour récupérer le produit au prix sur la page produit. $(document).ready(function() { var productDataJson = $('#product-details.js-product-details').attr('data-product'); var productData = JSON.parse(productDataJson); console.log(productData.price_without_reduction); // Donne le prix d'origine du produit console.log(productData.price_amount); // Donne le prix réduit du produit }); Salutations Link to comment Share on other sites More sharing options...
Massimo333 Posted May 23 Author Share Posted May 23 On 5/8/2024 at 3:51 PM, Knowband Plugins said: Salut, Veuillez utiliser le code jQuery ci-dessous pour récupérer le produit au prix sur la page produit. $(document).ready(function() { var productDataJson = $('#product-details.js-product-details').attr('data-product'); var productData = JSON.parse(productDataJson); console.log(productData.price_without_reduction); // Donne le prix d'origine du produit console.log(productData.price_amount); // Donne le prix réduit du produit }); Salutations Perfect! Thanks 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