Fidel62 Posted January 5, 2014 Share Posted January 5, 2014 how can I make appear the add to cart button after I finish the customization ? http://4fevi.com/index.php?id_product=8&controller=product&id_lang=1#/color-metal/ring_size-8_5 first I want to hide the add to cart button and make appear the add to cart button after I finish the customization. Thanks Link to comment Share on other sites More sharing options...
Dh42 Posted January 6, 2014 Share Posted January 6, 2014 Can you better explain what you are trying to do. Link to comment Share on other sites More sharing options...
shailendra Posted January 6, 2014 Share Posted January 6, 2014 (edited) on product.tpl add the following js <script type="text/javascript"> $("document").ready(function(){ //firstly hide the add to cart button on page load $("#add_to_cart").hide(); //after final customization when customer click on save image button, show add to cart button $("input#infobia_save_image#infobia_save_image").click(function(){ $("#add_to_cart").show(); }); });</script> Edited January 6, 2014 by shailendra (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted January 6, 2014 Share Posted January 6, 2014 so, code that you pasted above works for you? i checked your website, i don't see there add to cart button also i don't see customization field in "product customization" tab too Link to comment Share on other sites More sharing options...
shailendra Posted January 7, 2014 Share Posted January 7, 2014 (edited) so, code that you pasted above works for you? i checked your website, i don't see there add to cart button also i don't see customization field in "product customization" tab too i have suggested the code as per requirement of the website which Fidel62 provided here, Yesterday there was an "add to cart button" on product page and he is using a module to customize products, which can be found here at http://shop.infobia.tn/en Edited January 7, 2014 by shailendra (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts