E2Pdf
Forum Replies Created
-
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] Image srce from hidden fieldWe see that your “Image” has a “Left” setting set to “250”. Please, update the plugin to the latest version 1.23.01, as we discovered a bug in 1.23.00 when the “Left” or “Top” setting is impossible to set to “0”.
After update, set below values via “Properties” as follows:
Left: 0, Top: 0, Width: 9999, Height: 9999
- It must resize the image to the page size.
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] Image srce from hidden fieldUnfortunately we can’t replicate the issue. Do you have position “Left” set to 0? Please attach the screenshot of the “Image” object properties.
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] Image srce from hidden fieldIn this case, you need to use the “Image” object resized to the full page. You can set also “z-index” to “-1”, remove the option to “Keep Image Ratio”, and lock the element: https://e2pdf.com/docs/elements/elements#lock
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] Image srce from hidden fieldHello,
If your hidden field contains a URL to the image, there must not be any issues with using its field ID / Key (for ex: [123]) in the “Image” object “Value”, or inside the “HTML” object as:
<img src="[123]">
Thanks so much for your review and high rating! We appreciate it!
Best regards,
OleksandrForum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] PDF file with multiple namesE2Pdf is primarily designed for exporting single entry data. Perhaps in the future, we will add a more user-friendly method for creating such PDFs.
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] PDF file with multiple namesThat’s exactly what was described to accomplish the task. Step by step guide for 2 first pages:
You will need to create more pages depending on how many names can be entered, and each page must contain modified [e2pdf-format-output] shortcode in part of output=”{0}”, output=”{1}”, output=”{2}”, as it explodes lines in textarea one by one.
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] PDF file with multiple names- To hide empty pages, it can be used “Actions” and “Conditions”: https://prnt.sc/0eoZLfJetP1p
Intead of {text-1:1}, {text-1:2}, {text-1:3}… you need to use the shortcodes above with [e2pdf-format-output]
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] PDF file with multiple namesThe solution above is exactly for this. E2Pdf can’t automatically duplicate pages with different data, so the only solution is to create multiple pages of PDF, fill them with different data, and hide empty pages via “Actions” and “Conditions”. If it will be “textarea” where you fill up each student’s name with a new line then:
The code below will output 1st student’s name:
[e2pdf-format-output explode="\r\n" filter="trim" output="{0}"]{textarea-1}[/e2pdf-format-output]
This code will output 2nd student’s name:
[e2pdf-format-output explode="\r\n" filter="trim" output="{1}"]{textarea-1}[/e2pdf-format-output]
and so on.
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] PDF file with multiple namesIf under multi-line field you mean “textarea”, the pattern will be the same, except instead of {text-1:1}, {text-1:2} it must be used:
[e2pdf-format-output explode="\r\n" filter="trim" output="{0}"]{textarea-1}[/e2pdf-format-output]
[e2pdf-format-output explode="\r\n" filter="trim" output="{1}"]{textarea-1}[/e2pdf-format-output]
[e2pdf-format-output explode="\r\n" filter="trim" output="{2}"]{textarea-1}[/e2pdf-format-output]
and so on.
Keep attention that this is the solution to generate a SINGLE PDF file as described in your task: Meaning, 5 certificates are generated for each student in one PDF file
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] PDF file with multiple namesHello,
If we understood correctly you need to create a SINGLE PDF file that will have multiple pages (each page per user). If so, you can try the following solution:- Use group field inside Forminator Form
- Inside PDF create multiple pages and use inner group fields shortcodes to output separate data: https://e2pdf.com/docs/extensions/forminator-forms#group-field
{text-1:1}, {text-1:2}, {text-2:3}, etc. - To hide empty pages, it can be used “Actions” and “Conditions”: https://prnt.sc/0eoZLfJetP1p
Yes, by default values must come from the entry saved by the Forminator.
In theory, it can be some hidden field that will have generated barcode number in the form or you can try to generate it via PHP hook and assign it to the submitted entry.
This value can be assigned to the barcode object in the E2Pdf Template via field slug, for example for a hidden field it will be {hidden-1}.
Barcodes/QR codes do not store/output any data by default. You need to assign a “value”, and based on this data, the Barcode/QR Code will be generated.
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] re-downloadHello,
Unfortunately, no. By default, it’s not possible at this moment. E2Pdf doesn’t have such functionality and the Forminator Forms doesn’t have the functionality to output entries on the frontend where we could integrate E2Pdf as it’s done for Formidable Forms Views / GravityView.
Hello,
Unfortunately, E2Pdf doesn’t have such automated functionality, it can just output defined data to the PDF. In theory, you can try to create some custom validation system for QRCodes / BarCodes when scanned but it’s out of the E2Pdf functionality.
We remain at your service.