• Resolved John

    (@dsl225)


    Hello,

    Is there a way to add an “information” field somewhere in the form.
    Pure text field that doesn’t require any input from visitor.

    I have a multipage donation form with this last page as captured here.

    I want to separate the “previous” button from the Paypal ones right below in order to avoid confusion as visitors can easily leave without proceeding with payments. I would like to add some text between the “previous” button and the 2 Paypal payment buttons, in the space marked in red.

    Is this possible to achieve?

    Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter John

    (@dsl225)

    RESOLVED

    after re-saving several times both the form and Paypal settings.

    Thread Starter John

    (@dsl225)

    Sorry, this is NOT resolved. Posted at the wrong thread…
    The reply above was for this one.

    Still looking for a solution to add an information box before the Paypal buttons, thanks.

    Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    Hi @dsl225

    I hope you are doing well.

    Is there a way to add an “information” field somewhere in the form.
    Pure text field that doesn’t require any input from visitor.

    You can use the HTML field, it accepts the macro too, for example, if you add the name-1 field on the first page, and create in the latest page the HTML field and enter {name-1} the information that the user submitted in the first field will show up in the last page.

    I want to separate the “previous” button from the Paypal ones right below in order to avoid confusion as visitors can easily leave without proceeding with payments.

    I am afraid it is not possible to add a text, but you can add a border to make it clear for users:

    @media only screen and (max-width: 768px) {
     .forminator-payment{
        padding-top: 2rem;
        border-top: dotted red 2px;
      }
    }

    https://monosnap.com/file/ZKn5rqcxayEvwMiYQRpJoS0PImh9vf

    Let us know if the HTML field is what you were looking for.
    Best Regards
    Patrick Freitas

    Thread Starter John

    (@dsl225)

    Hi Patrick,

    Many thanks for this.
    Using macros in HTML files is very interesting in such cases as it allows adding a box above the checkout with instructions and using the name and amount the visitor entered. That helps a lot!

    At first, the fields label “HTML” was displaying at frontend but I see that by simply deleting it is re-added at backend but not at frontend anymore. Also quite interesting to know.

    I added this border both at top and bottom of the payment block but I also was able to use the “content” CSS property for adding a small line above the buttons. Not bad.

    One more thing if you don’t mind: is it possible to change the CC checkout background black color to something else?

    I tried this one with no success:

    .paypal-button.paypal-button-color-black, .paypal-button-row.paypal-button-color-black .menu-button {
        background: #085378;
    }
    Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    Hi @dsl225

    I am afraid it is not possible, those buttons are from Paypal and load from a script inside an iFrame so custom CSS wouldn’t work.

    Best Regards
    Patrick Freitas

    Thread Starter John

    (@dsl225)

    Many thanks, well noted.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Adding an information field (with no input)’ is closed to new replies.