jasongreen
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form Submissions] does this plugin capture other contact formsHi ellebillias
No. At the moment it just integrates with Contact Form 7.
Forum: Plugins
In reply to: [Contact Form Submissions] Editable SubmissionsHi optimizeworldwide
The plugin was developed to just log the data submitted by users. There is no way to edit the values.
I would recommend developing this functionality or using another plugin.
Forum: Plugins
In reply to: [Contact Form Submissions] CSV export not working with regional charactersHi
Could you send me the contents of your contact form markup so I can replicate your setup and find the issue.
You can email it to me [email protected]
Forum: Plugins
In reply to: [Contact Form Submissions] CSV export ony headersHi pedromcosta
I’ve just uploaded a new version 1.6.1.
Could you update and let me know if you have any more problems.
Forum: Plugins
In reply to: [Contact Form Submissions] Problem exporting CSV: no dataHi Agos
I’ve just uploaded a new version 1.6.1.
Could you update and let me know if you have any more problems.
Forum: Plugins
In reply to: [Contact Form Submissions] Export problemHi zjoia
I’ve just uploaded a new version 1.6.1.
Could you update and let me know if you have any more problems.
Forum: Plugins
In reply to: [Contact Form Submissions] CSV export not working with regional charactersHi derak666
I’ve just uploaded a new version 1.6.1.
Could you update and let me know if you have any more problems.
Forum: Plugins
In reply to: [Contact Form Submissions] Is there a way to delete submissions?Hi álvaro
On the Contact Form Submissions page you can use the bulk actions to delete one or more submission form the database. There’s also a dropdown to filter submissions by date if you need to find and remove all for a particular month. For more advanced find and delete you’d need to use a third-party plugin to do that. Because the submissions are saved as posts this should work with most other plugins that work with built-in WordPress posts/pages etc.
Any issues let me know.
Forum: Plugins
In reply to: [Contact Form Submissions] Change uploaded file locationHi dan382
I use subfolders to separate submission files for cleanliness and avoid issues with duplicate filenames.
You can override the parent folder where the files are saved with a filter but you can’t remove the subfolders. The code to change the files location is:
function custom_wpcf7s_dir(){ # full path C:\path\to\wordpress\wp-content\uploads return $custom_dir; } add_filter('wpcf7s_dir','custom_wpcf7s_dir'); function custom_wpcf7s_url(){ # full url https://example.com/wp-content/uploads return $custom_dir; } add_filter('wpcf7s_url','custom_wpcf7s_url');
Any problems let me know.
Forum: Plugins
In reply to: [Contact Form Submissions] CSV export not working with regional charactersHi derak666
Thanks for the example. I’m working on a fix right now and will post an update very soon to fix the encoding issues.
Forum: Plugins
In reply to: [Contact Form Submissions] Prevent submission for Email(2)Hi acris
You can add the following function to your site and disable mail2 submissions for all contact forms from being saved:
function wpcf7s_disable_mail2(){ return false; } add_filter('wpcf7s_save_submission_mail2', 'wpcf7s_disable_mail2');
Any problems let me know.
Forum: Plugins
In reply to: [Contact Form Submissions] cannot find where the data is storedHi wiresplus
The submissions are saved as posts and saved in wp_posts. Additional meta will be stored in wp_postmeta.
But you don’t need to view posts via the database. You can go to Contact Forms -> Submissions to view them.
Forum: Plugins
In reply to: [Contact Form Submissions] can’t activateHi algonzalez
This plugin requires PHP 5.3.
PHP 5.2 has been marked as EOL for almost 7 years so I would definitely recommend you update ASAP.
Forum: Plugins
In reply to: [Contact Form Submissions] Ignore Mail2/Outgoing MailHi Adam
Thanks for reporting the issue with mail2 not sending, I’ve now fixed the issue in version 1.6 (just uploaded).
I’ve also enabled saving mail2 by default and users can disabled it by using a filter wpcf7s_save_submission_mail2 and return false.
Forum: Plugins
In reply to: [Contact Form Submissions] New submission even if not successfuly submitHi yortem
Thanks for reporting the issue.
I’ve just uploaded a fix in version 1.5.8.