JaviTorr Posted September 12, 2016 Share Posted September 12, 2016 (edited) Hi! I'm looking for a custom contact form module for placing it in the product page as you can see at the following website: http://www.regaloempresas.co.uk/bottle_al3837.aspx Thanks a lot for your help. Edited September 12, 2016 by JaviTorr (see edit history) Link to comment Share on other sites More sharing options...
Simonas Invertus Posted September 13, 2016 Share Posted September 13, 2016 Do you want contact form or a quote? If you want a quote you can have a look at our quotation module. It is not the same as in the screenshot design wise, but it can do the job. https://www.prestashop.com/forums/topic/518482-module-quotation-advanced/ 1 Link to comment Share on other sites More sharing options...
Shashikant N Sharma Posted September 20, 2016 Share Posted September 20, 2016 Let me look at the solution. Link to comment Share on other sites More sharing options...
Abdillokra Posted September 1, 2017 Share Posted September 1, 2017 (edited) Here's a great way to add the default contact form to the Product page : https://www.prestashop.com/forums/topic/564724-creating-an-ajax-contact-form-on-the-product-page/?p=2433279 For the code shown in the vid above ready to copy : https://www.prestashop.com/forums/topic/564724-creating-an-ajax-contact-form-on-the-product-page/?p=2604958 File to edit : product.tpl flie location : themes/<your theme folder>/product.tpl <a href="{$link->getPageLink('contact')}?content_only=1" id="contact-us-popup">Contact Us</a> <script> {literal} $(document).ready(function() { $('#contact-us-popup').fancybox({ type: 'ajax', autoDimensions: false, autoSize: false, width: 600, height: 'auto', afterShow: function() { $('.contact-form-box').submit(function(e) { e.preventDefault(); var formdata = new FormData($(this)[0]); formdata.append('submitMessage', 1); var that = $(this); $.ajax({ type: 'POST', data: formdata, url: $(this).attr('action'), contentType: false, processData: false, success: function(data){ var error = $($.parseHTML(data)).filter('.alert.alert-danger'); if(error.length > 0) that.prepend(error) else { // succes! var success = $($.parseHTML(data)).filter('.alert.alert-success'); that.fadeOut('fast', function(){ $(this).after(success) }); } } }) }); } }); }); {/literal} </script> Credits : http://nemops.com/prestashop-ajax-contact-form/#.WBhwB_nx6Uk Edited September 1, 2017 by Abdillokra (see edit history) Link to comment Share on other sites More sharing options...
TiaNex Shopping Posted October 8, 2017 Share Posted October 8, 2017 i have one http://www.tianex.com/en/children-swimwears/658-two-pieces-teenager-girl-swimwear-for-little-girl.html Link to comment Share on other sites More sharing options...
PrestaLover Posted October 23, 2017 Share Posted October 23, 2017 Hi there, If you want to create a contact or quote form in prestashop store I think DHVC Form is the best module to create a contact form anywhere without any kind of programming knowledge. Thanks Link to comment Share on other sites More sharing options...
ironbg Posted June 29, 2019 Share Posted June 29, 2019 On 10/8/2017 at 10:18 PM, irder said: i have one http://www.tianex.com/en/children-swimwears/658-two-pieces-teenager-girl-swimwear-for-little-girl.html I need module like yours is it free? Link to comment Share on other sites More sharing options...
MEG Venture Posted August 18, 2019 Share Posted August 18, 2019 Check this out https://www.megventure.com/prestashop-modules/9-prestashop-best-quote.html Link to comment Share on other sites More sharing options...
Steven_ Posted August 19, 2019 Share Posted August 19, 2019 Hi, You can try Product Page Field modules. These modules allow to add the custom fields to the product page. https://addons.prestashop.com/en/search?search_query=Product field 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