Add option to download Pdf in Gravity Forms directory plugin Add option to download Pdf in Gravity Forms directory plugin wordpress wordpress

Add option to download Pdf in Gravity Forms directory plugin



I ran into the same thing and had to create a workaround.

go to the file /wp-content/plugins/gravity-forms-addons/template-row.php

on line 250, add this code:

    if ($field_id == "9999999") {    $template = 'default-template.php';    $link = '<a href="' . site_url() . '/?gf_pdf=1&fid=' . $form_id . '&lid=' . $lead["id"] . '&template=' . $template . '&download=1">Download</a>';    $value = $link;    }

This should come just before the line that says "echo $value".

Assuming you follow the instructions in the link you posted, this should work.