How to add print button without submit button?

  • koko3214
    Asked on December 23, 2015 at 11:24 AM
    Last, How I add a print button without a submit button?  Besides allowing a users to share the recipe form to Facebook, I would like to give them a choice to print.  I notice only way to add print button a submit button must be applied.  I only want a print button.
  • Ben
    Replied on December 23, 2015 at 11:46 AM

    To show the Print button, but not the Submit button, you need to apply a bit of CSS. Now if you want this to be applied to all submit buttons, the code is quite simple:

    button.form-submit-button {
        display: none;
    }

    If you need it to be set for only specific submit button, while leaving others shown, you would need to apply the same code, but with slightly different code, like this:

    #id_1 button.form-submit-button {
        display: none;
    }

    Where the #id_1 is actually depending on your form setup and is usually different for each form (unless it is cloned).

    You can however see how to find it in this guide: How to apply custom CSS to a particular field

    We are of course here if you need any assistance with this.

    All of the CSS codes should be added to your form by following these steps: Inject Custom CSS Codes

  • koko3214
    Replied on December 23, 2015 at 7:07 PM

    Thank You, 

    Going to test and feedback how it went.

     

    Lou

  • koko3214
    Replied on December 23, 2015 at 7:13 PM

    Thank You, Thank You, And Thank you!!!  Your answer is a Christmas Gift - IT WORKS!!!!

     

    Thanks BEN!

     

    Lou

  • Kevin Support Team Lead
    Replied on December 23, 2015 at 8:22 PM

    Hi,

    On behalf of my colleague Ben, you are very welcome, we are glad to know it works like you want.

    Please, feel free to contact us anytime if you need more help, we will be more than glad to assist you.

    Regards.