From 049e2f15d0e854d1a7f2267b011255e4f508c70b Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Thu, 27 Apr 2017 14:38:37 -0400 Subject: [PATCH] adding styles to the pdf html output adding margin to the new discounted total field being displayed in the generated pdf --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 9aa68cc..4db978d 100644 --- a/functions.php +++ b/functions.php @@ -397,7 +397,7 @@ function change_post_content( $form ) { } add_action( 'gfpdf_post_html_fields', function( $entry, $config ) { if($entry['form_id'] === '2'){ - echo "
DISCOUNTED TOTAL: " . $entry['20'] . "
"; + echo "
DISCOUNTED TOTAL: " . $entry['20'] . "
"; } -- 2.17.1