tmargot
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Checkbox not being rendered on formSorry my mistake, I forgot to pass a label. This works:
[checkbox mailing "Join us"]Forum: Plugins
In reply to: [Email Before Download] Checkbox not workingSorry, my mistake, forgot to pass a label. This worked:
[checkbox mailing "Join us"]- This reply was modified 9 years ago by tmargot.
Forum: Plugins
In reply to: [Email Before Download] HTML Before Inline Link ProblemsThanks for the reply. Single quotes are not working, for does not submit after switching. I will have to live with this until a fix is released. I have added margin instead of $nbsp;
Cheers,
TrisForum: Plugins
In reply to: [Contact Form 7] Hooking Form SubmitHoping this will help someone trying to learn everything at once, the following worked out for me. As a start use the following in your functions.php…
add_action( 'wpcf7_mail_sent', 'do_my_work' ); //access after send if( ! function_exists( 'do_my_work' ) ) { function do_my_work($cf7){ //contact form object passed in /* Use WPCF7_Submission object's get_posted_data() method to get it. */ $submission = WPCF7_Submission::get_instance(); $posted_data = $submission ? $submission->get_posted_data() : null; //get form data if($posted_data){ $formName = $posted_data['your-name']; //get form field value // do something more } } }Forum: Plugins
In reply to: [Contact Form 7] Hooking Form SubmitHi,
Did you find an answer to this as I require the same info?
Cheers,
TristanForum: Fixing WordPress
In reply to: posting via e-mail — POP3 quit: connection does not existI had this very problem and searched everywhere for an answer with no success. It may seem obvious to most but I was certain of my settings. I finally figured it out, my POP3 port is 110 and not 25.