jasongreen
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form Submissions] wp and php compatibilityHi
The plugin has been tested and works as expected on WordPress 5.9 and PHP 8.
If you have any issues, please let me know.
- This reply was modified 2 years, 9 months ago by jasongreen.
Forum: Plugins
In reply to: [Contact Form Submissions] Contact 7 Form not Submitting – 500 ErrorThanks @psonoda.
The issue has now been resolved in the latest version 1.7.3.
If you have any more issues please let me know.
Forum: Plugins
In reply to: [Contact Form Submissions] Bug v1.7.2 SELECT fields not exportedHi @vissersj
Thanks for raising the issue, this has now been resolved in the latest version 1.7.3.
If you have any more issues please let me know.
Forum: Plugins
In reply to: [Contact Form Submissions] WP 5.9 and WC 6.2Hi @francescfp
Yes the plugin has been tested and works as expected on those versions.
Forum: Plugins
In reply to: [Contact Form Submissions] Contact 7 Form not Submitting – 500 ErrorHi @psonoda
Is there anything in your error log that indicates what the error was?
Forum: Plugins
In reply to: [Contact Form Submissions] resubmissionHi @noubba1982
No there is currently no way to re-send the message. They are just saved as a record.
Forum: Plugins
In reply to: [Contact Form Submissions] get amount of mailsHi @mor1993
You could use a WP_Query to grab all the records and filter by your search criteria. The post type you should be using in your query is “wpcf7s”.
Kind Regards
JasonForum: Plugins
In reply to: [Contact Form Submissions] Show post id created for submissionHi @dkneidhart
That wouldn’t be possible because the email will be sent separately to the submission record being saved.
Regards
JasonForum: Plugins
In reply to: [Contact Form Submissions] Attachment is brokenHi @lknoke
This has now been resolved in the latest version.
Forum: Plugins
In reply to: [Contact Form Submissions] Export to csv is not workingHi
Sorry to hear you are having issues.
I’m not able to replicate the page not found issue on my testing environment. Could you please confirm:
– Contact Form Submissions version installed
– WordPress version
– PHP versionForum: Plugins
In reply to: [Contact Form Submissions] What’s the reason for closing the plugin?Hi
A minor vulnerability was found when loading wp-admin if someone had submitted data they shouldn’t have in a submission. This has been fixed and I’m just waiting for the moderators to re-publish the plugin to the plugin directory.
Sorry for the inconvenience. It should be back online very soon!
Jason
Forum: Plugins
In reply to: [Contact Form Submissions] Submission Files |?get_mail_files()Hi @lknoke
In this case, $this is referencing the class WPCF7SAdmin.
Which file url path are you trying to reference?
Jason
Forum: Plugins
In reply to: [Contact Form Submissions] Get user infoHi @umararshad
Depending on where the information is coming from you could either use a hidden field or programatically add the data using PHP and the built-in plugin filter wpcf7s_submission_fields.
Hope this helps
Jason
Forum: Plugins
In reply to: [Contact Form Submissions] Is it possible to change column headingsHi
Yes you can, if you select the form in the filters dropdown at the top of the page the name column will be displayed.
Alternatively you can use the WP core filters to modify the columns using php.
Forum: Plugins
In reply to: [Contact Form Submissions] Get Data From Contact FormHi
Yes you can retrieve the values by using the get_post_meta function. To see all the data associated with your submission you can run
get_post_meta(get_the_ID(), false, true);
to see all values.