• Resolved webtinker

    (@webtinker)


    Using a Multi Page Gravity Forms along with WooCommerce Gravity Forms Product add-ons, where i use Save and Continue Later feature. So that in long forms, people might have to come back later to finish the form from where they left. The functionality is just working fine.

    But the challenge is to hide both ADD TO CART button & Quantity when someone opted “Save and Continue Later” button clicked in the last page/step.

    Kindly point me in the right direction.

    • This topic was modified 6 years, 5 months ago by webtinker.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • AJ a11n

    (@amandasjackson)

    Hi @webtinker

    the challenge is to hide both ADD TO CART button & Quantity when someone opted “Save and Continue Later” button clicked in the last page/step.

    Because you are using Gravity Forms and WooCommerce Gravity Forms Product add-ons premium plugins, can you please contact the developers with help with this.

    Gravity Forms support: https://www.gravityforms.com/support/

    The WooCommerce Gravity Forms Product add-ons extension is developed and supported by our partner. You can create a ticket that will go directly to them and they’ll be able to help you further – here’s how: https://woocommerce.com/my-account/marketplace-ticket-form/

    Thread Starter webtinker

    (@webtinker)

    @amandasjackson thanks for your guidance. But apparently achieved this via a simple jQuery call when a save_form_message ID is true disable submit button.

    <script type="text/javascript">
    	
        if (jQuery(".form_saved_message").length > 0) {
    		          jQuery('.single_add_to_cart_button').hide();
        }
    </script>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide ADD TO CART upon Save and Continue’ is closed to new replies.