maximum.software
Forum Replies Created
-
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] Checkbox GroupIt would probably be more than a month. I’ve been trying to finish and launch a new version of the software stack behind the PDF editing. That is more of a priority for me right now, it would solve more pressing issues. However, let me see what I can do. If you really need this feature urgently, sponsoring this feature will allow me to have the budget for my guys to work on it immediately.
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] Automaticly download pdf after clicking “send”Technically speaking, adding the following to your wp-config.php file should be sufficient:
define('WPCF7_PDF_FORMS_DOWNLOADS_TIMEOUT_SECONDS', 30);However, due to a limitation in wp-cron scheduling in my plugin, this will not work.
I have added a fix earlier today to make it work (see my commit on GitHub). However, I will need to do some more testing before I make a release with the fix. You may be able to apply the patch to your files manually. If you are having difficulties with this, send me temporary wp-admin login details to my email mentioned above and I will log in and try it out on your WP instance.
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] Automaticly download pdf after clicking “send”It works for me. One thing I can do is look at your setup and try to debug it.
If you send me temporary cPanel login details to admin at maximum dot software then I will do some debugging.
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] Automaticly download pdf after clicking “send”I think I know what your problem is. Can you put your PHP file in the same directory that has the ‘wp-load.php’ file and add
chdiras shown below:<?php define('WPCF7_PDF_FORMS_DOWNLOADS_TIMEOUT_SECONDS', 30); chdir(__DIR__); require_once( 'wp-load.php' ); WPCF7_Pdf_Forms::get_instance()->cron();Make sure you update your cron job to point to the file in the correct folder.
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] Automaticly download pdf after clicking “send”You will need to put this code in a separate PHP file somewhere in your hosting environment and then create a cron job to run that file. If you have cPanel, you can set up a cron job using the web UI.
Here is a random tutorial for doing the above that I found via a search engine:
https://www.cluemediator.com/set-the-cron-job-to-run-a-php-script-in-cpanelForum: Plugins
In reply to: [PDF Forms Filler for CF7] Since Contact Form Version 5.4 bug…@sherwin_flight, yes.
Unfortunately, I was in a hurry to release compatibility fixes and didn’t do as much testing, which is why some errors slipped through. However, I’ve fixed all the bugs I was able to find so far. Everything should be working. If you find anything not working, please let me know.
Thank you.
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] Since Contact Form Version 5.4 bug…Please make sure to update to the version that I released today, it fixes a critical bug that slipped through my testing.
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] error with contact form 7Please upgrade ‘PDF Forms Filler for Contact Form 7’ to the latest version.
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] Checkbox GroupYou are right, my first method isn’t going to work due to a number of reasons.
I tried to implement my second method with the conditional fields plugin but that didn’t work also.
I will need to fix my plugin to allow what you need as part of my multi-select support effort. I don’t have an ETA for when this will be done. I’ll update this support ticket once I do it.
- This reply was modified 5 years, 3 months ago by maximum.software.
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] Automaticly download pdf after clicking “send”I don’t think you need to worry about this.
The files are stored in ‘wpcf7_pdf_forms_downloads’ folder in your WP uploads folder. Each form submission has its own randomly named folder. If an unauthorized person wanted to download the generated PDF files, they would at least need to guess the randomized folder name. The folders should be deleted after 24 hours by WordPress cron.
If you really need those files to be deleted ASAP, you can set up a cron job to run every minute with the following code:
<?php define('WPCF7_PDF_FORMS_DOWNLOADS_TIMEOUT_SECONDS', 30); require_once( 'wp-load.php' ); WPCF7_Pdf_Forms::get_instance()->cron();Let me know if that works for you.
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] Format for Download PDFI’ve released a new version that fixes the download link feature in CF7 v5.4.
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] Automaticly download pdf after clicking “send”I’ve released a new version that fixes the download link feature in CF7 v5.4.
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] Since Contact Form Version 5.4 bug…I’ve released a new version that fixes the download link feature in CF7 v5.4.
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] Fillable PDF Forms NOT attaching to emailI’ve released a new version that fixes the download link feature in CF7 v5.4.
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] Checkbox GroupOne way to make it work is to edit your PDF and change the exported values for your checkboxes. For example, the ‘Building’ checkbox would have the exported value ‘Building’, the ‘Electrical’ checkbox would have ‘Electrical’ and so on. You wouldn’t need the pipes at that point. Then, you would map the single CF7 field to multiple PDF fields.
Another way to do it is to use some sort of conditional mail-tag. There might be a plugin that can help with that. You would then map the conditional mail-tag to the field.