Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#1501 2015-05-16 12:20:20
- pierlu
- Member
- Registered: 2014-08-12
- Posts: 153
Re: zem_contact_reborn 4.0.3.20
Salve con il plugin Zem contact ho fatto in modo che venisse un errore quandoi uno sbaglia a fare il form come si fa a stilizzare il msg?
Offline
#1502 2015-05-16 12:52:27
Re: zem_contact_reborn 4.0.3.20
Would you mind asking the question in English as well, so most of us don’t have to use Google Translate in an attempt to understand the question?
Having said that: Styling is documented in the plugin help
Offline
#1503 2015-05-17 11:28:06
- pierlu
- Member
- Registered: 2014-08-12
- Posts: 153
Re: zem_contact_reborn 4.0.3.20
Zem contact with the plugin I made sure that was a mistake quandoi one mistake to make the form how to stylize the warning?
Offline
#1504 2015-05-18 06:41:28
Re: zem_contact_reborn 4.0.3.20
The errors appear in a ul
with zemError
class.
Yiannis
——————————
NeMe | hblack.art | EMAP | A Sea change | Toolkit of Care
I do my best editing after I click on the submit button.
Offline
#1505 2015-05-18 08:19:47
Re: zem_contact_reborn 4.0.3.20
Are you using the plugin from here? If so, Stef is the coordinator of that version.
Offline
#1506 2015-05-19 08:31:27
- candyman
- Member
- From: Italy
- Registered: 2006-08-08
- Posts: 684
Re: zem_contact_reborn 4.0.3.20
uli wrote #290372:
You make the checkbox mandatory with
required="1"
and only those who ticked it will be able to submit the form:<txp:zem_contact_checkbox label="Legal stuff accepted" required="1" />
Is that what you wanted to know?
Now the checkbox is needed to be flagged before sending the message: OK.
Now I’ve need another step to complete my module. I can’t link my terms and conditions with HTML code without generating an error.
My code:
<txp:zem_contact_checkbox label="I've read the <a href="http://mysite.it/legal">Legal stuff< /a> and I've accepted it." required="1" />
Last edited by candyman (2015-05-19 08:33:03)
Offline
#1507 2015-05-19 08:42:27
Re: zem_contact_reborn 4.0.3.20
candyman wrote #290899:
My code:
<txp:zem_contact_checkbox label="I've read the <a href="http://mysite.it/legal">Legal stuff< /a> and I've accepted it." required="1" />
Should be.
<txp:zem_contact_checkbox label="I've read the <a href=""http://mysite.it/legal"">Legal stuff< /a> and I've accepted it." required="1" />
If that doesn’t work, which error do you get?
Offline
#1508 2015-05-19 08:47:18
- candyman
- Member
- From: Italy
- Registered: 2006-08-08
- Posts: 684
Re: zem_contact_reborn 4.0.3.20
It doesn’t work.
Beside the checkbox I get this:
I’ve read the <a href=“http://mysite.it/legal”>Legal stuff< /a> and I’ve accepted it.
Offline
#1509 2015-05-19 09:01:30
Re: zem_contact_reborn 4.0.3.20
Hmm… it probably escapes the label. Try this:
<txp:zem_contact_checkbox label="I've read the" required="1" /><a href="http://mysite.it/legal">Legal stuff</a> and I've accepted it.
Offline
#1510 2015-05-19 09:33:28
- candyman
- Member
- From: Italy
- Registered: 2006-08-08
- Posts: 684
Re: zem_contact_reborn 4.0.3.20
Perfect, it works! :D
Thanks!
Offline
#1511 2015-05-19 09:45:11
- candyman
- Member
- From: Italy
- Registered: 2006-08-08
- Posts: 684
Re: zem_contact_reborn 4.0.3.20
No, there’s still a problem.
I someone dosn’t check the checkbox the error message is this:
The required field “I’ve read the ” is empty (or similar). How can avoid this?
Last edited by candyman (2015-05-19 09:45:29)
Offline
#1512 2015-05-19 10:00:36
Re: zem_contact_reborn 4.0.3.20
<txp:zem_contact_checkbox label="I've read the legal stuff and I've accepted it" required="1" />: <a href="http://mysite.it/legal">conditions</a>
Offline