admin

Forum Replies Created

Viewing 25 posts - 1,051 through 1,075 (of 2,504 total)
  • Author
    Posts
  • in reply to: Secret Key #17614
    admin
    Keymaster

    Thank you, we also need a screenshot of the Formidable form’s On Submit Message Box where you have the PRO2PDF shortcode.

    We remain at your service.

    in reply to: Secret Key #17612
    admin
    Keymaster

    The error could be one of several issues… We need more information in order to determine the origin.
    . Are you able to export a merged PDF form from the plugin’s EXPORT tab?
    . Do you have more than one field map layout created for the Formidable form? If so, are they all working, if not, you should delete or correct all non-working field maps.

    Complete this form if you’d like us to take a look, or reply with screenshots of the entire field map layout and the Formidable form’s On Submit Message Box for further review.

    We remain at your service.

    in reply to: Create WP forms from PDF #17611
    admin
    Keymaster

    Here’s an overview…

    . Create a Formidable Form and add the fields required that match your PDF, the form will be completed by your web users.

    . Upload your PDF form (with Adobe form fields) to the plugin’s Export tab. NOTE: If you name the PDF form fields the same as the Formidable form fields or the same as the Formidable Form keys, then you can take advantage of the Auto Mapping setting found on the plugin’s SETTINGS tab.

    . If you do not use the auto-mapping feature, then create the field map layout by manually selecting the fields to map on the plugin’s EXPORT tab.

    Here a step-by-step demo video to help you. We also offer low cost services to create a complete template for you which includes the Formidable Form, PDF Form, and Field Map Layout. Complete this form if you would like us to provide you with an estimate.

    We remain at your service.

    in reply to: Split: Permission denied error #17607
    admin
    Keymaster

    This issue was resolved with an update in 2016. What version of the plugin are you using? If it’s up-to-date, then it’s possible you have a unique installation. Complete this form to have us take a look.

    We remain at your service.

    in reply to: one form to complete multiple pdfs using conditional logic #17604
    admin
    Keymaster

    Optionally, you may keep the attachment option by setting up different email notifications for each type of application, then use the email notification’s conditional logic to control which email to send. However, the first option would be faster.

    We remain at your service.

    in reply to: one form to complete multiple pdfs using conditional logic #17603
    admin
    Keymaster

    There is no way to use conditional logic on PDf attachments, however, you may disable attachments for all Field Map Layouts, then you can use conditional logic in the body of email notification(s) to determine which link is displayed.

    We remain at your service.

    in reply to: Update is coming that breaks PDF merge #17602
    admin
    Keymaster

    Thank you for the heads up, however, the support thread is marked “PRIVATE”. Are you able to past the relevant info here? Are you referring to Formidable 3.0 or a different update to the signature add-on plugin?

    We remain at your service.

    in reply to: Woocommerce Addon + FP2P Addon – Preview PDF #17601
    admin
    Keymaster

    The Formidable form MUST save the data before the user can ‘preview’ the PDF. There is no out-of-the-box or built-in method to accomplish your desired functionality. This will require custom programming that we have completed for other users for a reasonable fee. Complete this form if you would like us to provide you with an offer.

    Here’s on overview of how this functionality may be accomplished;
    . Create a duplicate of the WooCommerce product and change the “Add to Cart” button to “Next”, and change the Formidable form “On Submit” to redirect to the duplicate product and send the Formidable entry_id as a parameter.
    . Create a Formidable form to “preview” the original form submission on the duplicated product page using Formidable’s Get a Value from an Entry shortcode to populate hidden fields and a HTML field to preview the text, or display a Formidable View with a “Preview” button. Or, we have also created an image with text overlay and watermark to simulate a preview of the PDF to avoid the user leaving the site to ‘preview’ the document.

    A download link could be added to the WooCommerce Email Notifications with PHP code to generate a PRO2PDF download link the WooCommerce “Completed Order” and “Processing order” Email notifications. This will require custom development.

    We remain at your service.

    in reply to: Signature doesn't work #17588
    admin
    Keymaster

    We are running PHP version: 5.6.30 and are not planning on upgrading at this time. However, we are going to release a new (replacement) version of PRO2PDF, called e2Pdf, in March 2018. The new version is using the latest PHP release.

    We remain at your service.

    in reply to: Signature doesn't display #17585
    admin
    Keymaster

    Also, make sure the “Use local PDFtk” is not selected on the plugin’s SETTINGS tab.

    We remain at your service.

    in reply to: Signature doesn't display #17584
    admin
    Keymaster

    If the signature has worked in the past, then check to make sure “SIGNATURE” is selected in the field map layout’s FORMAT dropdown field. If the FORMAT dropdown is missing then the plugin has reverted to the free version.

    Let us know the status of the FORMAT dropdown.

    We remain at your service.

    in reply to: Signature doesn't work #17578
    admin
    Keymaster

    The signature plugin is working on all our sites as expected and there are no known issues. We are not familiar with a ‘serialize’ message or error. Are you able to provide a screenshot of the error?

    Check the plugin’s SETTINGS tab that the “Enable local PDFTK” option is not checked. If not checked and the signature is not merging, we are happy to take a look at your installation if you complete this form. Otherwise provide us with more information and we’ll try to help you troubleshoot the issue you are having.

    We remain at your service.

    in reply to: PDFtk install #17557
    admin
    Keymaster

    PDFtk is not required if you have purchased the pro version. Uncheck the “Enable local PDFTK” checkbox on the plugin’s SETTINGS tab.

    Are you able to export from the EXPORT tab after selecting the Form, Dataset, and Field Map Layout? If not, what is the error you are receiving?

    Complete this form if you’d like us to take a look at your installation.

    We remain at your service.

    in reply to: Split Form Field Values into multiple fields in PDF #17542
    admin
    Keymaster

    Yes, there was an update to the plugin, update from the WP plugins tab.

    We remain at your service.

    in reply to: Split Form Field Values into multiple fields in PDF #17540
    admin
    Keymaster

    We have updated the plugin to accept this hook in functions.php or code snippet. Just change the commented value below…

    add_filter('fpropdf_wpfx_extract_fields', 'fpropdf_wpfx_extract_fields_updated', 10, 2);
     function fpropdf_wpfx_extract_fields_updated($fields, $entry) {
         if (isset($entry->form_id) && $entry->form_id == '9') { //change 9 to the Form ID
             $exploded = array();
             foreach ($fields as $key => $field) {
                 $index = $field[0];
                 $value = $field[1];
                 if ($index == 'm9hvnr') { //change m9hvnr to the name of the 1st PDF form field 
                     $exploded = explode(",", $value); //change , to the data separator used in the Formdiable Form Field
                     if (isset($exploded['0'])) {
                         $fields[$key][1] = $exploded['0'];
                     } 
                 }
             }
             
             foreach ($fields as $key => $field) {
                 $index = $field[0];
                 $value = $field[1];
                 if ($index == '2ebjab') { //change 2ebjab to the name of the 2nd PDF form field 
                     if (isset($exploded['1'])) {
                         $fields[$key][1] = $exploded['1'];
                     } 
                 }
             }
         }
         return $fields;
     }
    in reply to: Download shortcode client download old mapped pdf #17531
    admin
    Keymaster

    Change the shortcode’s dataset=xx parameter to dataset=[id]

    EXAMPLE
    CHANGE: [formidable-download form="bxo68" dataset="5630" layout="94"]
    TO: [formidable-download form=”bxo68″ dataset=[id] layout=”94″]

    We remain at your service.

    in reply to: Two pdfs attached to email #17529
    admin
    Keymaster

    There are unfinished, unused, abandoned, or non-working field map layout(s) for the same form that also have email attachment checked. Go through all other field map layouts for the same form and uncheck the email attachment option.

    Or better yet, delete all unused field map layouts by selecting the layout – scroll to the bottom of the layout and click “Delete Entire Field Map”.

    We remain at your service.

    in reply to: Hidden field is not mapping correctly #17528
    admin
    Keymaster

    There are no known issues with merging hidden fields to PDFs, we merge hidden fields daily in our own forms…

    If you are using conditional logic to hide the Dropdown field, that would cause the hidden field to be blank… other than that, the hidden field data should merge.

    Use this form if you are able to provide a link to the form, or create a PRO2PDF template of the merge, or access to the installation so that we may further investigate.

    We remain at your service.

    in reply to: Split Form Field Values into multiple fields in PDF #17525
    admin
    Keymaster

    There are no options in Formidable to split the values of a field, therefore there are no options in PRO2PDF. You would need to use javascript or PHP to split the values into hidden fields before saving the entry, then map the hidden fields to the PDF fields. We do not offer Javascript or PHP support.

    We remain at your service.

    in reply to: Checkbox 'add other' option questions #17520
    admin
    Keymaster

    Formidable’s “other option” will only work if you merge to a PDF text field, not to a PDF radio button because there’s is no way to ‘match’ random user’s input to a PDF radio button.

    The work-around is to use Formidable’s conditional logic to show/hide a Formidable Text Field and call it “other”. This will select the “other” PDF Radio Option and fill the PDF’s “other” text field.

    We remain at your service.

    in reply to: Receive 3 pdf blank when i submit the form #17503
    admin
    Keymaster

    There are unfinished, unused, abandoned, or non-working field map layout(s) for the same form that also have email attachment checked. Go through all other field map layouts for the same form and uncheck the email attachment option.

    Or better yet, delete all unused field map layouts by selecting the layout – scroll to the bottom of the layout and click “Delete Entire Field Map”.

    Use this form to provide login credentials if the issue is not resolved. We remain at your service.

    in reply to: How do i map radio bouton #17498
    admin
    Keymaster

    Take a look at this PDFEscape demo, make sure not only the field “Name” but also the “Value” matches EXACTLY.

    We remain at your service.

    in reply to: pre sales questions regarding number of pdfs #17493
    admin
    Keymaster

    Wordpress does not display PDF files, you can use the PRO2PDF shortcode(s) in the Formidable Form’s “On-Submit Message Box” and include the desired shortcode parameters to download or automatically display the PDF in a new browser tab, but not “on a WordPress page”.

    in reply to: pre sales questions regarding number of pdfs #17491
    admin
    Keymaster

    Click the words (links) in the above message above to be directed to the help pages on Formidable Form’s site.

    Here’s a link to compare the free & paid versions of Formidable Forms. You can contact Formidable’s outstanding support team here if you have any questions about their plugin.

    We remain at your service.

    in reply to: pre sales questions regarding number of pdfs #17489
    admin
    Keymaster

    We can also create the field map layouts for you, complete this form if our service is needed to provide a completed project.

Viewing 25 posts - 1,051 through 1,075 (of 2,504 total)