You are not logged in.
wornout wrote:
How can I add an image upload filed?
You can’t. You need Anonymous File Upload and another form.
neme.org | neme-imca.org | hblack.net | LABS
Offline
Hi
I try to make contact depending on article author, then i use jmd_author and use it in zem_contact, but i have error message: email cant be sent!
jmd_author return a right email!
here is the code:
<txp:zem_contact to='<txp:jmd_author display="email"/>' label="">
<txp:zem_contact_text label="Nom/Prénom" size="34" /><br />
<txp:zem_contact_email size="34" /><br />
<txp:zem_contact_textarea label="Message" cols="25" /><br />
<txp:zem_contact_submit label="Envoi" />
</txp:zem_contact>
Offline
I agree, I would split this into two for testing:
- does a plain ZCR work? – does <txp:jmd_author display="email"/> output the correct values (tested in a page so that you can see the output).
Online
Hi
A simple zcr work as expected (with the same email that rendered by <txp:jmd_author display=“email”/>)
The <txp:jmd_author display=“email”/> return the right email (i put it in <p><txp:jmd_author display=“email”/></p> and it rendered the email without extra code or caractere
Has someone tried that before me?
Offline
Sorry, but I haven’t used jmd_author at all, but I have done something similar by using the results from smd_query with success.
Only last thought – are you sure that the output doesn’t obscure the email address (ie. in the source) to prevent harvesting of email addresses? Otherwise, I don’t think I can add much…
Online
Hi
I looked into jmd_author code to see what it do:
It s small but i found this line:
$out = Ee(safe_field("email", "txp_users", "name='$username'"));
and this one
return strreplace(' ', $separator,$out);
I remve the Ee form the first and change the second to :
return $out;
and now the form work!
Thanks guys for you help i really appreciate.
Offline
Sorry if this has been asked before – can’t seem to find it through the 106 pages.
I’m trying to do a very simple form but clicking on Send Article results in refreshing the page and wiping out all the fields. And, Send Article disappears.
<txp:zem_contact to="yaddayadda@blahlblah.com" thanks="Thank you, your message has been sent." label="Your Information">
<txp:zem_contact_text label="First Name" /><br><br>
<txp:zem_contact_text label="Last Name" /><br><br>
<txp:zem_contact_email /><br><br>
<txp:zem_contact_text label="Phone Number"/><br><br>
<txp:zem_contact_send_article />
</txp:zem_contact>
Something I missed?
I tried doing what ruud suggested here but that didn’t work out.
Last edited by chebake (2011-09-09 17:29:40)
Offline