E2Pdf
Forum Replies Created
-
In the PDF Name and PDF Local Name,?the usage is the same. You should be able to use any values available in the E2Pdf Template context, for example [field_id], [e2pdf-arg1], etc.
PDF Name and PDF Local Name (responsible for the save name), can be modified in the E2Pdf Templates settings: https://e2pdf.com/docs/templates/builder/settings#pdf
Hello,
You can try to:
1. Create a “repeater” field in the Formidable Forms.
2. On the “Success Message” / “Mail Body” use the repeater iteration as:
[foreach 100]
[e2pdf-download id="1" arg1="[101]"]
[/foreach]* where “100” is your Repeater Field ID, and “101” is the sub-field of the repeater that contains the word, and “1” is your E2Pdf Template ID.
3. Inside the E2Pdf Template use [e2pdf-arg1] shortcode to output “word”
P.S. It would generate multiple PDF download URLs where it will be just a single word from the repeater. E2Pdf can’t yet create the “single” archive with generated PDFs.Forum: Reviews
In reply to: [E2Pdf - Export Pdf Tool for WordPress] Fantastic Support and PluginThank you for the kind words and the excellent rating!
Best regards,
E2Pdf TeamForum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] Essential Blocks – pdf generateAll currently supported plugins can be found here: https://e2pdf.com/docs
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] Essential Blocks – pdf generateHello,
Unfortunately, E2Pdf has not been integrated with the Essential Blocks plugin yet and can’t be used in the described context.
We will include the plugin integration in our TODO list for review.
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] post to pdfHello,
E2Pdf Template must be connected to the “WordPress” extension, and the Page / Post type on which you have the repeater element and you plan to place the E2Pdf shortcode. E2Pdf shortcode must be placed on the page via “Code Block”: https://www.ads-software.com/support/topic/post-to-pdf-3/#post-17513127
As for the content output, did you try to use the “HTML” object and use the “Value” set as:
[e2pdf-wp key="post_content"]
or
[e2pdf-wp key="post_content" output="frontend"]
or
[e2pdf-wp key="post_content" output="backend"]
Keep attention please on the “HTML” block size, as by default content will be truncated in case it does not fit in the block size.
Hello,
It looks like something blocks the file upload. Does it happen with another PDF file?
If you are using any security plugins – try temporarily deactivating it. If it won’t help or you are not using any security plugins, please try to check the error.log of the website, to see if there are any additional details of the error.
If none of the solutions work, contact us please here: https://e2pdf.com/support/contact
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] Mapping last order dataHello,
We need some additional information please:
- What is the connection of the E2Pdf Template? Is it connected to “WooCommerce” -> “Orders”?
- How did you output the PDF download link? Did you set it via “E2Pdf” -> “Settings” -> “WooCommerce”?
- An example of the shortcode used inside the E2Pdf Template that outputs the same data among all orders.
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] post to pdfIf it reloads the full page, unfortunately, getting this data without custom coding will not be possible.
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] post to pdfWe need to see an example on the page as if it uses ajax/javascript to load entries from the 2nd / 3rd page – E2Pdf will not be able to extract that data.
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] post to pdfHello,
Do you mean the repeater element on the page? If so, we suppose it must be extracted from the page source. To see if it’s possible, we need to see the page example.
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] post to pdfIs the image stored in the user meta? If yes, it must be possible to use the shortcode as:
[e2pdf-user key="metakey_that_store_image" meta="true" attachment_image_url="true" size="full"]
If it still won’t work, are you able to find any shortcode in the visual mapper that can contain that image? If so, please create a temporary “textarea”, map it with that shortcode, generate a PDF, and let us know the output.
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] post to pdfIf you mean on the backend – unfortunately no, there is no such possibility at this moment. We will add this point for review.
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] post to pdf– Do you mean PDF to have user details? If so, You can build E2Pdf Template with the same connection and use [e2pdf-user] shortcodes inside: https://e2pdf.com/docs/shortcodes/helper/e2pdf-user
– By default, E2Pdf doesn’t have such functionality. As an option, you can try User ID as a unique Identifier:
[e2pdf-user key="ID"]
or build your logic to save the unique incremented value in user meta and output inside PDF via [e2pdf-user] shortcode. It will require some custom coding.