Gravity PDF - Version 1.2.1

Version Description

  • Fixed path to custom css file included in PDF template
Download this release

Release Info

Developer Blue Liquid Designs
Plugin Icon 128x128 Gravity PDF
Version 1.2.1
Comparing to
See all releases

Code changes from version 1.2.0 to 1.2.1

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.blueliquiddesigns.com.au/index.php/gravity-forms-pdf-ext
4
  Tags: gravity, forms, pdf, automation, attachment
5
  Requires at least: 3.4.1
6
  Tested up to: 3.4.1
7
- Stable tag: 1.2.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -63,6 +63,9 @@ By deleting the .htaccess file in the 'output' folder you'll be able to access t
63
 
64
  Remember to always make a backup of your plugin before upgrading otherwise you'll loose your custom PDF template file.
65
 
 
 
 
66
  = 1.2.0 =
67
  * Template files moved to the plugin's template folder
68
  * Sample Form installed so developers have a working example to modify
4
  Tags: gravity, forms, pdf, automation, attachment
5
  Requires at least: 3.4.1
6
  Tested up to: 3.4.1
7
+ Stable tag: 1.2.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
63
 
64
  Remember to always make a backup of your plugin before upgrading otherwise you'll loose your custom PDF template file.
65
 
66
+ = 1.2.1 =
67
+ * Fixed path to custom css file included in PDF template
68
+
69
  = 1.2.0 =
70
  * Template files moved to the plugin's template folder
71
  * Sample Form installed so developers have a working example to modify
pdf.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Gravity Forms PDF Extended
5
  Plugin URI: http://www.blueliquiddesigns.com.au/index.php/gravity-forms-pdf-extended-plugin/
6
  Description: Gravity Forms PDF Extended allows you to save/view/download a PDF from the front- and back-end, and automate PDF creation on form submission. Note: If you're upgrading, backup your plugin files beforehand as your custom template will be overridden.
7
- Version: 1.2.0
8
  Author: Blue Liquid Designs
9
  Author URI: http://www.blueliquiddesigns.com.au
10
 
4
  Plugin Name: Gravity Forms PDF Extended
5
  Plugin URI: http://www.blueliquiddesigns.com.au/index.php/gravity-forms-pdf-extended-plugin/
6
  Description: Gravity Forms PDF Extended allows you to save/view/download a PDF from the front- and back-end, and automate PDF creation on form submission. Note: If you're upgrading, backup your plugin files beforehand as your custom template will be overridden.
7
+ Version: 1.2.1
8
  Author: Blue Liquid Designs
9
  Author URI: http://www.blueliquiddesigns.com.au
10
 
templates/example-template.php CHANGED
@@ -50,8 +50,7 @@ $form = RGFormsModel::get_form_meta($form_id);
50
  <?php echo $form["title"] ?> :
51
  <?php echo count($lead_ids) > 1 ? __("Entry # ", "gravityforms") . $lead_ids[0] : 'Bulk Print' ?>
52
  </title>
53
- <link rel='stylesheet' href='<?php echo GFCommon::get_base_url() ?>/css/print.css' type='text/css' />
54
- <link rel='stylesheet' href='<?php echo bloginfo('wurl') ?>/wp-content/plugins/gravity-forms-pdf-extended/template.css' type='text/css' />
55
  </head>
56
  <body>
57
 
50
  <?php echo $form["title"] ?> :
51
  <?php echo count($lead_ids) > 1 ? __("Entry # ", "gravityforms") . $lead_ids[0] : 'Bulk Print' ?>
52
  </title>
53
+ <link rel='stylesheet' href='<?php echo GFCommon::get_base_url(); ?>/css/print.css' type='text/css' />
 
54
  </head>
55
  <body>
56
 
templates/pdf-print-entry.php CHANGED
@@ -49,8 +49,8 @@ $form = RGFormsModel::get_form_meta($form_id);
49
  <?php echo $form["title"] ?> :
50
  <?php echo count($lead_ids) > 1 ? __("Entry # ", "gravityforms") . $lead_ids[0] : 'Bulk Print' ?>
51
  </title>
52
- <link rel='stylesheet' href='<?php echo GFCommon::get_base_url() ?>/css/print.css' type='text/css' />
53
- <link rel='stylesheet' href='<?php echo bloginfo('wurl') ?>/wp-content/plugins/gravity-forms-pdf-extended/template.css' type='text/css' />
54
  </head>
55
  <body>
56
 
49
  <?php echo $form["title"] ?> :
50
  <?php echo count($lead_ids) > 1 ? __("Entry # ", "gravityforms") . $lead_ids[0] : 'Bulk Print' ?>
51
  </title>
52
+ <link rel='stylesheet' href='<?php echo GFCommon::get_base_url(); ?>/css/print.css' type='text/css' />
53
+ <link rel='stylesheet' href='<?php echo home_url(); ?>/wp-content/plugins/gravity-forms-pdf-extended/template.css' type='text/css' />
54
  </head>
55
  <body>
56