How to programmatically send additional notification emails in Contact form 7 [closed]

You can manipulate recipients just before sending out the emails with the hook wpcf7_before_send_mail. Here is a simple script that adds an extra recipient: add_action( ‘wpcf7_before_send_mail’, ‘add_my_second_recipient’, 10, 1 ); function add_my_second_recipient($instance) { $properites = $instance->get_properties(); // use below part if you want to add recipient based on the submitted data /* $submission = WPCF7_Submission::get_instance(); … Read more

Contact form 7 dynamic text extension – populate form with title from previous page [closed]

There are two steps to this process: 1. Make sure you have your form set up correctly. Your form should include the ‘dynamictext’ tag, and use the correct syntax as described on the plugin page. For example, you may want something like: [dynamictext theproductname “CF7_GET key=’foo'”] This will set anything after the “foo” $_GET URL … Read more

Horizontal (columned) Contact form 7 and acceptance field on devices

You need a two-third column CSS and a layout like this: ———————————————- | .two-third | .one-third | ———————————————- | .one-half | .one-half | | —————————–| Submit | | Name column | Email column | button | —————————–| column | | Acceptance column | | ———————————————- So the CSS rules: (the … means your code and … Read more

Adding a hyperlink to the checkbox in the contact form 7 [closed]

It should work like said in my comment but maybe an even better way would be to use the acceptance filed-type that is build especially for that kind of checkboxes. [acceptance term_and_conditions class:required] I can confirm I have read and accepted the <a href=”http://www.your-domain.com/terms-page”>Terms and Conditions</a>.[/acceptance] In the contact form 7 edit page go to … Read more

How to choose email recipient in Contact Form 7 based on address state input in form and save to database [closed]

Thanks to Michael Simpson, from Contact Form DB. The solution is listed (kind of hidden) on the Contact Form DB website in the article – CF7 Menus with Pipes Add to functions.php function myFilter($formData) { // Change $formData return $formData; // be sure to return it } add_filter(‘cfdb_form_data’, ‘myFilter’); function location_form_handler($formData) { $formName=”ExtendedContact”; // change … Read more

How to execute a server side script when contact form 7 is submitted? [closed]

You need wpcf7_before_send_mail hook that gets triggered after sending email successfully. Just add this in your functions.php. add_action( ‘wpcf7_before_send_mail’, ‘process_contact_form_data’ ); function process_contact_form_data( $contact_data ){ var_dump($contact_data->posted_data); $name = $contact_data->posted_data[“your-name”]; $email = $contact_data->posted_data[“your-email”]; echo $name ; echo $email; } You can access fields by their name in $contact_data->posted_data array. Yes. You can redirect to another page … Read more

How to use other shortcodes inside Contact form 7- forms? [closed]

There’s two ways to do what you’re wanting. First way is to add this code to functions.php of the Contact Form 7 plugin: add_filter( ‘wpcf7_form_elements’, ‘mycustom_wpcf7_form_elements’ ); function mycustom_wpcf7_form_elements( $form ) { $form = do_shortcode( $form ); return $form; } That allows you to drop shortcodes directly into CF7. Second is to add the Accordion … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)