Skip to content

Instantly share code, notes, and snippets.

@jetsloth
Last active May 11, 2021 00:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jetsloth/29ae9774db0ee1da513a8cdfb22ece68 to your computer and use it in GitHub Desktop.
Save jetsloth/29ae9774db0ee1da513a8cdfb22ece68 to your computer and use it in GitHub Desktop.
Using Gravity PDF gfpdf_pdf_field_content filter to include Image Choices in the PDF
<?php
add_filter('gfpdf_pdf_field_content', function ($value, $field, $entry, $form) {
if ( !function_exists('gf_image_choices') ) {
return $value;
}
// Update to suit
$image_width = 80;
return gf_image_choices()->gfpdf_ic_field_content($value, $field, $entry, $form, $image_width);
}, 10, 4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment