Include Title & Plain Text in...

User 139605 Photo


Registered User
83 posts

My client has a bunch of terms outlined in plain text in the form, and then they check that they agree. He wants the terms in plain text to be included in the submitted form, so he can print it off I am assuming.

Is there any way to do this?

Thank you in advance :)
User 187934 Photo


Senior Advisor
20,181 posts

Hi Jackson,
Yes
http://progrower.coffeecup.com/forms/I-agree-text/
Do you want the text that's submitted hidden from the user?
if so uncomment the line that says //jQ("input[name='agree_text']").hide();
There may be other tweaks needed depending on wanted result and interaction.
Example readonly or disable input. Conditionals may play a role in needs.
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 139605 Photo


Registered User
83 posts

Thanks for the response Eric. Really appreciate it. I am a little confused on how I could make that work for my needs. For example, here's the form we have: http://www.spiritmassage.com/contact.htm In the form, if you click on "What Would You Like To Discuss? *" drop down and select "Event Planning....". Then scroll down to "This represents an agreement & understanding between Spirit Massage and..." And see all that text below, up to the "MISCELLANEOUS" paragraph?The client wants that to be included in the submitted form.

Isn't there an easy way to just set a text element that gets included in a form, just like the labels do?

Thanks for looking into this for me. :)
User 139605 Photo


Registered User
83 posts

Nevermind, I think I understand what to do. Thanks again Eric!! You rock!!
User 139605 Photo


Registered User
83 posts

Actually, they don't really need to agree. They just need to fill in their name. So, there's no condition. So, I guess I just need include the text area, and have it hidden, right?

What would be the code to just hide the text to the customer, but have it display in the submitted form?
User 187934 Photo


Senior Advisor
20,181 posts

You'll need to use a textarea because of the large amount of characters.
You can hide the complete div holding the textarea using the id,
jQ("#item194").hide();

Use this to fill textarea.
jQ("textarea[name='agree_text']").val("LIABILITY\nCUSTOMER understands that Spirit Massage requires Professional Liability Insurance Coverage for each of its subcontractors and will provide detailed policy information & verification of said coverage to CUSTOMER upon request.\nINDEMNITY\nCUSTOMER agrees, to indemnify and hold Spirit Massage, harmless from any claim, loss, cost, expense, demand, or damage, arising directly or indirectly out of the use of its on-site services and activities in connection therewith.\nNON-SOLICITATION\nCUSTOMER agrees not to solicit agents, subcontractors or representatives of Spirit Massage directly for employment, contract or otherwise.\nPAYMENT\nFor the initial engagement, CUSTOMER agrees to supply a valid credit card to secure the booking and to submit payment on or before the date of service. For all subsequent engagements, CUSTOMER agrees to submit payment on a NET30 basis (30 days after invoice.) Payment is accepted by check or major credit card.\nCANCELLATIONS\nNo refunds will be provided for deposits or cancellations received less than 24 hours before a scheduled appointment. Cancellations received between 72 and 48 hours before a scheduled appointment are eligible for a 75% refund, and cancellations received less than 48 hours before a scheduled appointment are eligible for a 50% refund. Additionally, events with 5 or more therapists that have been booked and confirmed, will incur a 10% non-refundable fee for any cancellation or change, at any time.\n")


Uncomment the #item hide line to hide entire div from user.
Working here.
http://progrower.coffeecup.com/forms/in … lain-text/

Lot me know if you need some more tweaking.
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 139605 Photo


Registered User
83 posts

Thanks Eric. I'll give it a try ;)

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.