jasongreen
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form Submissions] Problem exporting CSV: no dataHi agos22
The problem should be now fixed in version 1.6.2.
Once updated, please let me know if this is still happening.
- This reply was modified 6 years, 11 months ago by jasongreen.
- This reply was modified 6 years, 11 months ago by jasongreen.
Forum: Plugins
In reply to: [Contact Form Submissions] CSV export ony headersHi pedromcosta
The issue should now be fixed with version 1.6.2.
If the problems still happening please let me know.
Forum: Plugins
In reply to: [Contact Form Submissions] CSV export not working with regional charactersHi derak666
The problem should now be fixed in version 1.6.2.
If your still have an issue please let me know.
Forum: Plugins
In reply to: [Contact Form Submissions] CSV export not workingHi atroot
This problem has now been fixed in version 1.6.2.
Forum: Plugins
In reply to: [Contact Form Submissions] Export to CSVHi @boltmediaca
The issue has now been fixed in version 1.6.2.
Forum: Plugins
In reply to: [Contact Form Submissions] export csv with blank dataThe fix has now been included in version 1.6.2.
Thanks @archie22is.
Forum: Plugins
In reply to: [Contact Form Submissions] export csv with blank data@archie22is Happy for you to have a look. I’ve committed the latest version here.
Forum: Plugins
In reply to: [Contact Form Submissions] Custom TableHi 42master
Thanks for your question.
This isn’t something I would consider developing at the moment.
You are more than welcome to build on my plugin or develop this yourself. You can find the source code to any WP plugin in the Plugins Directory.
Here’s the link to mine:
https://www.ads-software.com/plugins/contact-form-submissions/#developersForum: Plugins
In reply to: [Contact Form Submissions] Can this plugin work with honey pot plugin?Hi harpinteractive
I’ve just been testing this and don’t experience the same problem.
I’ve installed:
contact-form-7 4.9.1
contact-form-submissions 1.6.1
contact-form-7-honeypot 1.12My contents of my contact form is:
<label> Your Name (required) [text* your-name] </label> <label> Your Email (required) [email* your-email] </label> [honeypot honeypot-63] [submit "Send"]
If I inspect the honeypot element, remove the css hiding the input field and enter a value the form submission fails and no submission is saved. If I leave the honeypot field empty the contact form submission is successful and the record is saved in my plugin.
Can you run a test and let me know if you still have the problem?
Regards
Jason
Forum: Plugins
In reply to: [Contact Form Submissions] Can certain contact forms be excluded?Hi goehlert
Yes you can. If you add a filter to your source code you can disable submission saves based on the contct form 7 post id.
Here’s an example snippet of how you can do it.
function override_wpcf7s_save_submission($save = true, $cf7_id = 0){ if(10 === $cf7_id){ $save = false; } return $save; } add_filter('wpcf7s_save_submission', 'override_wpcf7s_save_submission', 10, 2);
Let me know if you get any problems.
Forum: Plugins
In reply to: [Contact Form Submissions] Export: Warning: mb_convert_encoding()Hi
Before I release another update can you please edit the following two lines and confirm if it fixes your problem.
Admin.php replace line 483:
$values[$key] = mb_convert_encoding($value, ‘utf8’);Admin.php replace line 504
$values[$keyFile] = mb_convert_encoding(implode(‘,’, $files), ‘utf8’);Regards
Jason
Forum: Plugins
In reply to: [Contact Form Submissions] add xlsx/odsHi enboig
Sorry for the late reply.
Thanks for your request but I don’t have any plans to add more file formats at the moment.
Regards
Jason
Forum: Plugins
In reply to: [Contact Form Submissions] Disable EmailHi dkalisch
You’ll need to ask that question in the official Contact Form 7 support forum. My plugin is an add-on that allows you to save the submissions for later use.
Regards
Jason
Forum: Plugins
In reply to: [Contact Form Submissions] Export to CSVHi boltmediaca
A few other people seem to have this problem and it relates to the encoding type. Can you confirm your DB_CHARSET value? It’s usually set in wp-config.php?
Jason
Forum: Plugins
In reply to: [Contact Form Submissions] Export: Warning: mb_convert_encoding()Hi
If there’s a fix for everyone I will certainly release an update to fix the warning.
Can you confirm the value of DB_CHARSET defined in wp-config.php. It’s usually utf8 but given the warning it looks like you’re both using utf8mb4?