Print, PDF, Email by PrintFriendly - Version 3.0.4

Version Description

  • Align-right and align-center support for themes that remove WordPress core css.
Download this release

Release Info

Developer printfriendly
Plugin Icon 128x128 Print, PDF, Email by PrintFriendly
Version 3.0.4
Comparing to
See all releases

Code changes from version 3.0.3 to 3.0.4

Files changed (2) hide show
  1. pf.php +15 -2
  2. readme.txt +4 -1
pf.php CHANGED
@@ -4,12 +4,13 @@ Plugin Name: Print Friendly and PDF
4
  Plugin URI: http://www.printfriendly.com
5
  Description: PrintFriendly & PDF optimizes your pages for print. Help your readers save paper and ink, plus enjoy your content in printed form. Website
6
  Name and URL are included to ensure repeat visitors and new visitors when printed versions are shared.
7
- Version: 3.0.3
8
  Author: Print Friendly
9
  Author URI: http://www.PrintFriendly.com
10
 
11
  Changelog :
12
- 3.0.3 - Support for bad themes that alter template tags and prevent JavaScript from loading in footer
 
13
  3.0.2 - Fixed JS bug with Google Chrome not submitting and fixed input validation issues.
14
  3.0.1 - Fixed minor JS bug.
15
  3.0 - Complete overhaul of the plugin by Joost de Valk.
@@ -155,6 +156,18 @@ if ( ! class_exists( 'PrintFriendly_WordPress' ) ) {
155
  border:none;
156
  padding:0;
157
  }
 
 
 
 
 
 
 
 
 
 
 
 
158
  </style>
159
  <style type="text/css" media="print">
160
  .printfriendly {
4
  Plugin URI: http://www.printfriendly.com
5
  Description: PrintFriendly & PDF optimizes your pages for print. Help your readers save paper and ink, plus enjoy your content in printed form. Website
6
  Name and URL are included to ensure repeat visitors and new visitors when printed versions are shared.
7
+ Version: 3.0.4
8
  Author: Print Friendly
9
  Author URI: http://www.PrintFriendly.com
10
 
11
  Changelog :
12
+ 3.0.4 - Align-right and align-center support for themes that remove WordPress core css.
13
+ 3.0.3 - Support for bad themes that alter template tags and prevent JavaScript from loading in footer.
14
  3.0.2 - Fixed JS bug with Google Chrome not submitting and fixed input validation issues.
15
  3.0.1 - Fixed minor JS bug.
16
  3.0 - Complete overhaul of the plugin by Joost de Valk.
156
  border:none;
157
  padding:0;
158
  }
159
+ .alignleft {
160
+ float:left;
161
+ margin: 5px 20px 20px 0;
162
+ }
163
+ .alignright {
164
+ float:right;
165
+ margin: 5px 0 20px 20px;
166
+ }
167
+ .aligncenter {
168
+ text-align: center;
169
+ margin: 5px auto 5px auto;
170
+ }
171
  </style>
172
  <style type="text/css" media="print">
173
  .printfriendly {
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: printfriendly,joostdevalk
3
  Tags: print, pdf, printer, printing, printable, widget, plugin
4
  Requires at least: 2.8
5
  Tested up to: 3.2.1
6
- Stable tag: 3.0.3
7
 
8
  The #1 Print and PDF button for your WordPress site. Printer Friendly pages without coding, css, or print.css. Fast, easy, and professional.
9
 
@@ -63,6 +63,9 @@ If you have any other issues with the plugin or the PrintFriendly widget, please
63
  2. The Settings Page: choose your print button, text link, or use your own text or graphic.
64
 
65
  == Changelog ==
 
 
 
66
 
67
  = 3.0.3 =
68
 
3
  Tags: print, pdf, printer, printing, printable, widget, plugin
4
  Requires at least: 2.8
5
  Tested up to: 3.2.1
6
+ Stable tag: 3.0.4
7
 
8
  The #1 Print and PDF button for your WordPress site. Printer Friendly pages without coding, css, or print.css. Fast, easy, and professional.
9
 
63
  2. The Settings Page: choose your print button, text link, or use your own text or graphic.
64
 
65
  == Changelog ==
66
+ = 3.0.4 =
67
+
68
+ * Align-right and align-center support for themes that remove WordPress core css.
69
 
70
  = 3.0.3 =
71