Contact Coldform
Contact Coldform is a secure, lightweight, flexible contact form with plenty of options and squeaky clean markup. Coldform blocks spam while making it easy for your visitors to contact you from your WordPress-powered website. The plugin settings make it easy to take full control with plenty of options and several built-in themes for styling the form. Coldform delivers everything you need and nothing you don’t — no frills, no gimmicks, just pure contact-form satisfaction. Even better! Check out my new Ajax-powered Contact Form X » Overview Use shortcode or template tag to display Coldform anywhere Coldform sends descriptive, well-formatted plain-text email Safe and secure: Coldform blocks spam and malicious content Lightweight, standards-compliant, semantic, valid HTML markup Easy to configure and style from the Coldform Settings page Features Slick toggle-panel Settings Page makes it easy to customize Style Coldform using built-in “coldskins” or use custom CSS Use template tag to display Coldform anywhere in your theme Use shortcode to display Coldform on any WP Post or Page Displays customizable confirmation message to the sender Anti-spam & Security Anti-spam: Coldform includes optional challenge question Bot trap: hidden input field further reduces automated spam Solid security: protects against bad bots and malicious input User-friendly error messages to help users complete the form Customize Everything Includes option to enable users to receive carbon copies Coldform message includes IP, host, agent, and other details Customize field captions, error messages, and success message Includes three built-in themes “coldskins” to style, or Style the Coldform with your own custom CSS Option to add a custom prefix to the subject line Option to disable the captcha for registered users Clean Codes Coldform brings delicious code on every front: Standards-based code, built with the WordPress API Valid, semantic source code with proper formatting Coldform emails include descriptive, well-formatted content Better performance: CSS loaded only when form is displayed More Features Works perfectly without JavaScript Option to reset default settings Options to customize many aspects of the form Options to customize success, error, and spam messages Option to enable and disable CSS styles Works perfectly with or without Gutenberg Block Editor Like Contact Coldform? Please give a 5-star rating, thank you! Privacy Contact Coldform enables visitors to send a message via contact form. Any information that the user enters into the form will be sent directly to the recipient(s) according to plugin settings. Each email message optionally includes the sender’s IP address, user agent, and other data (visit the plugin setting “Disable Data” to disable sending of IP address and other user data). This plugin does not collect or store any user data. It does not set any cookies, and it does not connect to any third-party location(s). Contact Coldform is developed and maintained by Jeff Starr, 15-year WordPress developer and book author. Support development I develop and maintain this free plugin with love for the WordPress community. To show support, you can make a donation or purchase one of my books: The Tao of WordPress Digging into WordPress .htaccess made easy WordPress Themes In Depth Wizard’s SQL Recipes for WordPress And/or purchase one of my premium WordPress plugins: BBQ Pro – Blazing fast WordPress firewall Blackhole Pro – Automatically block bad bots Banhammer Pro – Monitor traffic and ban the bad guys GA Google Analytics Pro – Connect WordPress to Google Analytics Head Meta Pro – Ultimate Meta Tags for WordPress REST Pro Tools – Awesome tools for managing the WP REST API Simple Ajax Chat Pro – Unlimited chat rooms USP Pro – Unlimited front-end forms Links, tweets and likes also appreciated. Thanks! 🙂
Top keywords
- coldform18×3.05%
- wordpress11×1.86%
- contact8×1.35%
- form8×1.35%
- pro8×1.35%
- customize5×0.85%
- includes5×0.85%
- message5×0.85%
- option5×0.85%
- settings5×0.85%
- contact coldform4×0.68%
- css4×0.68%
Store file uploads for Contact Form 7
By default, Contact Form 7 dose not keep data it sends trough it’s contact forms. While plugins like Flamingo save that data, uploaded files are not added to Media Library. This plugin will save uploaded files to Media Library before email is sent by CF7. This plugin will raise an event with the the full file path & name. Subscribe to nmr_create_attachment_file_name filter to get and/or update data before attachment is added to media library. // The filter callback function. function example_callback( $file_name ) { // (maybe) modify $file_name. return $file_name; } add_filter( 'nmr_create_attachment_file_name', 'example_callback', 10, 1 ); Subscribe to nmr_before_insert_attachment filter to be able to change attachment attributes: caption and description are ‘post_excerpt’ and ‘post_content’. For other attributes, check documentation for wp_insert_attachment. // The filter callback function. function before_insert_attachment_callback( $attachment ) { // (maybe) modify $attachment array. return $attachment; } add_filter( 'nmr_before_insert_attachment', 'before_insert_attachment_callback', 10, 1 ); Optionally, subscribe to nmr_should_skip_save_attachment_to_media_library filter to be able to skip saving the attachment to media library: return true to skip, false is the default behaviour that saves the attachment to media library. Filter nmr_before_insert_attachment will not be called if skip was true. // The filter callback function. function skip_media_library_callback( $skip_save_to_media_library ) { // return true to skip saving to Media Library, false to save. return true; } add_filter( 'nmr_should_skip_save_attachment_to_media_library', 'skip_media_library_callback', 10, 1 ); This plugin will send the final attachment id if you are interested in getting other details, like attachment url. Listen to nmr_create_attachment_id_generated action. // The action callback function. function example_callback_id_generated( $attachment_id ) { // (maybe) do something with the args. $url = wp_get_attachment_url( $attachment_id ); } add_action( 'nmr_create_attachment_id_generated', 'example_callback_id_generated', 10, 1 ); Docs & Support Check the support forum on WordPress.org. If you can’t locate any topics that pertain to your particular issue, post a new topic for it. Store file uploads for Contact Form 7 Needs Your Support It is hard to continue development and support for this free plugin without contributions from users like you. If you enjoy using -Store file uploads for Contact Form 7- and find it useful, please consider making a donation. Your donation will help encourage and support the plugin’s continued development and better user support. Privacy Notices With the default configuration, this plugin, in itself, does not: track users by stealth; write any user personal data to the database; send any data to external servers; use cookies. It will, however store uploaded files trough Contact Form 7 in WordPress Media Library. Make sure your website users are aware of this fact!!! Pro Version Need more? The Pro version adds 13 features: Per-form control — choose which forms save files, set custom folder and rename pattern per form Auto-rename — rename files using patterns like {name}-{date}.{ext} from other CF7 fields Unique filenames — automatically avoid overwriting files with the same name Custom upload folder — save files to a specific subfolder per form File URL in email — replace [file] mail tag with a clickable link instead of an attachment Skip-mail compatibility — save files even when CF7’s skip_mail: on is set Upload log — admin screen listing every uploaded file with form, date, size, and download link Private files — store files outside the Media Library with access protection Admin notification — receive an email with file link on every upload Flamingo integration — link uploaded files to Flamingo inbound message entries Auto-delete — remove uploads older than a configurable number of days Image resize / compress — resize and compress images on upload Duplicate detection — skip saving if the same file was already uploaded (MD5 check) Get Pro →