jasongreen
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form Submissions] Problems exporting text with comma’sHi
Thanks for your patience.
This has now been fixed in the latest version (1.5.4).
Forum: Plugins
In reply to: [Contact Form Submissions] export issueHi
Thanks for your patience.
1 and 2 have now been fixed in the latest version (1.5.4).
Forum: Plugins
In reply to: [Contact Form Submissions] Line Feed in Text fieldHi
Thanks for your patience.
This has now been fixed in the latest version (1.5.4).
Forum: Plugins
In reply to: [Contact Form Submissions] ImprovementsThanks for your contribution!
I’ve included your code in the latest version.
Forum: Plugins
In reply to: [Contact Form Submissions] Collect data only from specific formsHi
I’d recommend using a remove_filter to deactivate the save depending on the contact form id. You can do this without editing the plugin.
remove_filter(‘wpcf7_mail_components’, array(‘WPCF7Submissions’, ‘submission’), 999);
Forum: Plugins
In reply to: [Contact Form Submissions] Collecting attachmentsHi
Because there could be filename clashes when different people are uploading files with the same file name, i purposely put them in different folders.
Do you have SSH access to your server? if so you could probably create a script to copy or archive all the attachments and download them in one go.
Forum: Plugins
In reply to: [Contact Form Submissions] Show Custom fields as column data?Hi
If you specify the contact form in the dropdown at the top of the page, all the contact form fields will be shown in additional columns.
Forum: Plugins
In reply to: [Contact Form Submissions] Such a great addon to Contact Forms 7Hi
Theres no way to do this manually but if you quickly change the contact form email (if required) you can fill in the contact form on your website with the values you got in the three emails.
Forum: Plugins
In reply to: [Contact Form Submissions] export issueThis looks like some issues with the export functionality not your settings.
I’ll take a look and post an update soon to fix these.
- This reply was modified 7 years, 7 months ago by jasongreen.
Forum: Plugins
In reply to: [Contact Form Submissions] Collect data only from specific formsHi
The plugin currently collects submissions from every form in cf7. I may look into adding this new feature in later versions.
Note you can filter the submissions by a particular contact form so this may help.
Forum: Plugins
In reply to: [Contact Form Submissions] Hook for 3rd party form submissionHi
Yeah you can definitely use my plugin to save a submission. This code isn’t tested but something like this should work:
$submission = array( 'form_id' => 0, 'body' => '', 'sender' => '', 'subject' => '', 'recipient' => '', 'additional_headers' => '', 'attachments' => array('field'=>'file_path',...), 'fields' => array('field'=>'value',...) ); global $contact_form_submissions; $contact_form_submission_id = $contact_form_submissions->save($submission);
Forum: Plugins
In reply to: [Contact Form Submissions] How to download all submissionsHi
The dropdown is to filter the submissions to only show those for that particular form. When you say you cannot select a form, what do you mean? Are you able to open the select menu and see all the contact forms on your site?
You can use the search form to keyword search all submissions by a value such as name or email address. This can be found on the top right hand side of the Submissions page.
Forum: Plugins
In reply to: [Contact Form Submissions] Different Notes with new WP VersionHi
This has now been fixed in 1.5.2.
Forum: Plugins
In reply to: [Contact Form Submissions] 1.2.3 ProblemsHi
Can you send me the full error as i cant replicate that on my install.
I will look at adding ACF support in the next version but in the meantime i’ve just release 1.5.1 which adds the ability to download a csv export of submissions so you can use this for printing.
Thanks for your support. Any more suggestions let me know!
Forum: Plugins
In reply to: [Contact Form Submissions] Drop down Edit functionalityHi
You can now download all submissions in CSV format in the latest version 1.5.1.