how to pass a woocommerce product name to contact form7 [closed]
how to pass a woocommerce product name to contact form7 [closed]
how to pass a woocommerce product name to contact form7 [closed]
contact form 7 repeatable fields calculations [closed]
Contact Form 7 – Uncaught TypeError: wpcf7.initForm is not a function [closed]
How can I get my Calculate Contact Form 7 field to update with jQuery? [closed]
You could customize Contact Form 7 so that once the button is pressed, it leads to a page where you have your shortcode. You basically are making the a page that should be a confirmation just have your shortcode. This thread has the info on the redirect: http://wordpress.org/support/topic/plugin-contact-form-7-redirect-to-thank-you-page-on-submit?replies=23
You can send a copy of the mail to the sender using Contact Form 7. If you require their email use the second mail option and then put the name tag exp: [example-tag] that you used in creating the form in the receiver part of the mail. Here are some screen shots below to illustrate … Read more
Use ‘author’ => get_current_user_id() as an argument for get_posts(). This will restrict the found posts to these of the user which is currently logged in. The best reference for the available parameters is still WP_Query::parse_query() in wp-includes/query.php. It is not exactly an atomic function, but you can find parameters not documented elsewhere – like this … Read more
I think wpcf7_before_send_mail is what you’re looking for. You can find some examples of it in action in this unofficial documentation and in this support thread where the plugin developer gives some guidance on using it..
I found the answer. This works fine. function row_count_shortcode() { global $wpdb; $user_count = $wpdb->get_var( “SELECT COUNT(*) FROM $wpdb->daviddgl_wp1.SaveContactForm7_6” )+1; return “17ICLAA”.sprintf(‘%03d’,$user_count); } add_shortcode( ‘row_count’, ‘row_count_shortcode’ );
If you’re looking to build responsive Contact Form 7 with a rich grid-layout (multiple-column layout) I would recommend you look at the Smart Grid-Lyout Extension for Contact form 7 plugin. It has a UI editor that allows you to design a grid layout for your form fields. In addition, it has the ability to turn … Read more