Securing Contact Form 7 [closed]
Try this one instead http://wordpress.org/extend/plugins/si-contact-form/ The safest thing to do is just have no contact form and a plain old email link.
Try this one instead http://wordpress.org/extend/plugins/si-contact-form/ The safest thing to do is just have no contact form and a plain old email link.
You need to add docx as an accepted filetype in the CF7 shortcode for your upload field, eg: [file your-file filetypes:pdf|doc|docx|odf|rtf]
I am not sure about subcategories that will expand only after clicking I have never seen any form fields that does this. However, you can use the dynamic_dropdonw field available in the Smart Grid-Layout Extension for CF7 plugin. It allows you to build a select2 droddown field using a category. Select2 js are quite cool … Read more
I solved this problem using the Contact Form DB plugin. I used their HTML shortcode [cfdb-html] to call the img url saved to the wordpress database Then I limited it to the most recent row (using the documentation available on their site) to make sure only the image was shown. Some basic CSS finished it … Read more
After trying a few more ideas I found the one that did the trick. So if anyone else is looking for something similar, here’s what worked for me: $(function() { $(‘.checkbox’).click(function() { if ($(‘:checked’, this).length > 0) { $(this).addClass(‘selected’); } else { $(this).removeClass(‘selected’); } }); });
if only the domain changes, you could try using relative urls: document.location=”/thank-you”; But if the domain you’re redirecting to is different than the page you’re on, a simple way to fix this problem would be to add a customizer value redirect_domain, and then make it a global variable in footer.php <script>var RedirectUrl=<?php echo get_theme_mod(redirect_domain);?></script> then … Read more
According to the documentation you have to create a custom filter to support it – you can do it like this: add_filter( ‘wpcf7_validate_text*’, ‘custom_text_validation_filter’, 20, 2 ); function custom_text_validation_filter( $result, $tag ) { if ( ‘your-name’ == $tag->name ) { // matches any utf words with the first not starting with a number $re=”/^[^\p{N}][\p{L}]*/i”; if … Read more
I would use Post My Contact Form plugin extension. You can map your form to a custom post or an existing post type, and map individual form fields to custom post fields. Each form submissions are stored as a post in your dashboard and the author of the submission is set to the logged in … Read more
Use Post My Contact Form plugin extension. You can map your form to a custom post or an existing post type, and map individual form fields to custom post fields. This is a lot more practical than CF7 Database as it allows you have each form submissions stored as a post and therefore reuse the … Read more
May be try like this: foreach( $post_ids->posts as $id): // get the post title, and apply any filters which plugins may have added // (get_the_title returns unfiltered value) $name[] = apply_filters(‘the_title’, get_the_title($id)); $lname[] = get_post_meta($id, ‘last_name’, TRUE); $address[] = get_post_meta($id, ‘address’, TRUE); $cinfo[] = get_post_meta($id, ‘contact_info’, TRUE); endforeach; $data = [‘fname’=>$name, ‘lname’=>$lname, ‘address’=>$address, ‘cinfo’=>$cinfo]; <script> … Read more