Version Description
- Fixed bug with disable css option.
Download this release
Release Info
| Developer | printfriendly |
| Plugin | |
| Version | 3.1.3 |
| Comparing to | |
| See all releases | |
Code changes from version 3.1.2 to 3.1.3
- pf.php +4 -3
- readme.txt +8 -3
pf.php
CHANGED
|
@@ -4,11 +4,12 @@ Plugin Name: Print Friendly and PDF
|
|
| 4 |
Plugin URI: http://www.printfriendly.com
|
| 5 |
Description: PrintFriendly & PDF button for your website. Optimizes your pages and brand for print, pdf, and email.
|
| 6 |
Name and URL are included to ensure repeat visitors and new visitors when printed versions are shared.
|
| 7 |
-
Version: 3.1.
|
| 8 |
Author: Print Friendly
|
| 9 |
Author URI: http://www.PrintFriendly.com
|
| 10 |
|
| 11 |
Changelog :
|
|
|
|
| 12 |
3.1.2 - Added disable css option to admin settings.
|
| 13 |
3.1.1 - Fixed admin js caching.
|
| 14 |
3.1.0 - Fixed admin css caching.
|
|
@@ -142,7 +143,7 @@ if ( ! class_exists( 'PrintFriendly_WordPress' ) ) {
|
|
| 142 |
*/
|
| 143 |
function front_head() {
|
| 144 |
|
| 145 |
-
if (
|
| 146 |
return;
|
| 147 |
|
| 148 |
?>
|
|
@@ -384,7 +385,7 @@ if ( ! class_exists( 'PrintFriendly_WordPress' ) ) {
|
|
| 384 |
*/
|
| 385 |
function admin_enqueue_scripts( $screen_id ) {
|
| 386 |
if ( $this->settings_page == $screen_id ) {
|
| 387 |
-
$ver = '3.1.
|
| 388 |
wp_register_script( 'pf-color-picker', plugins_url( 'colorpicker.js', __FILE__ ), array( 'jquery', 'media-upload' ), $ver );
|
| 389 |
wp_register_script( 'pf-admin-js', plugins_url( 'admin.js', __FILE__ ), array( 'jquery', 'media-upload' ), $ver );
|
| 390 |
|
| 4 |
Plugin URI: http://www.printfriendly.com
|
| 5 |
Description: PrintFriendly & PDF button for your website. Optimizes your pages and brand for print, pdf, and email.
|
| 6 |
Name and URL are included to ensure repeat visitors and new visitors when printed versions are shared.
|
| 7 |
+
Version: 3.1.3
|
| 8 |
Author: Print Friendly
|
| 9 |
Author URI: http://www.PrintFriendly.com
|
| 10 |
|
| 11 |
Changelog :
|
| 12 |
+
3.1.3 - Fixed bug with disable css option
|
| 13 |
3.1.2 - Added disable css option to admin settings.
|
| 14 |
3.1.1 - Fixed admin js caching.
|
| 15 |
3.1.0 - Fixed admin css caching.
|
| 143 |
*/
|
| 144 |
function front_head() {
|
| 145 |
|
| 146 |
+
if ( isset( $this->options['enable_css'] ) && $this->options['enable_css'] != 'on' )
|
| 147 |
return;
|
| 148 |
|
| 149 |
?>
|
| 385 |
*/
|
| 386 |
function admin_enqueue_scripts( $screen_id ) {
|
| 387 |
if ( $this->settings_page == $screen_id ) {
|
| 388 |
+
$ver = '3.1.3';
|
| 389 |
wp_register_script( 'pf-color-picker', plugins_url( 'colorpicker.js', __FILE__ ), array( 'jquery', 'media-upload' ), $ver );
|
| 390 |
wp_register_script( 'pf-admin-js', plugins_url( 'admin.js', __FILE__ ), array( 'jquery', 'media-upload' ), $ver );
|
| 391 |
|
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.4.2
|
| 6 |
-
Stable tag: 3.1.
|
| 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 |
|
|
@@ -21,12 +21,13 @@ The Print Friendly & PDF button automatically creates printer friendly and PDF v
|
|
| 21 |
* Fully Customizable! Choose your favorite print and PDF button, use a text link, or use your own graphic.
|
| 22 |
* Get precision placement with easy to change margins, alignment, and pages for your Print and PDF button.
|
| 23 |
* On-Page-Lightbox. Have you noticed that other printer friendly buttons open new windows, or tabs? Not with Print Friendly & PDF button. It opens in a Lightbox so you your users stay on the page, and your wp website.
|
| 24 |
-
* Professional looking print and
|
| 25 |
* More repeats and new users. Your brand/URL are printed on the page or saved in the PDF so users remember your site and new users can find you.
|
| 26 |
|
| 27 |
**Cool Print Features for Users:**
|
|
|
|
| 28 |
* Optimizes pages for printing and PDF so you save money and the environment.
|
| 29 |
-
* You can Print or get a PDF.
|
| 30 |
* Edit the page before printing or getting a PDF: remove the images and paragraphs you don't need to save ink!
|
| 31 |
|
| 32 |
PrintFriendly and PDF is the #1 print optimization technology, **as featured in [Lifehacker](http://lifehacker.com/5272212/print-friendly-optimizes-web-pages-for-printing "PrintFriendly & PDF in Lifehacker"), [Mashable](http://mashable.com/2009/05/18/print-friendly/ "PrintFriendly & PDF in Mashable") & [makeuseof](http://www.makeuseof.com/dir/printfriendly-save-on-paper-and-ink/#comment-95052)**.
|
|
@@ -64,6 +65,10 @@ If you have any other issues with the plugin or the PrintFriendly widget, please
|
|
| 64 |
|
| 65 |
== Changelog ==
|
| 66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
= 3.1.2 =
|
| 68 |
|
| 69 |
* Added disable css option to admin settings.
|
| 3 |
Tags: print, pdf, printer, printing, printable, widget, plugin
|
| 4 |
Requires at least: 2.8
|
| 5 |
Tested up to: 3.4.2
|
| 6 |
+
Stable tag: 3.1.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 |
|
| 21 |
* Fully Customizable! Choose your favorite print and PDF button, use a text link, or use your own graphic.
|
| 22 |
* Get precision placement with easy to change margins, alignment, and pages for your Print and PDF button.
|
| 23 |
* On-Page-Lightbox. Have you noticed that other printer friendly buttons open new windows, or tabs? Not with Print Friendly & PDF button. It opens in a Lightbox so you your users stay on the page, and your wp website.
|
| 24 |
+
* Professional looking print and PDFs with branded headers.
|
| 25 |
* More repeats and new users. Your brand/URL are printed on the page or saved in the PDF so users remember your site and new users can find you.
|
| 26 |
|
| 27 |
**Cool Print Features for Users:**
|
| 28 |
+
|
| 29 |
* Optimizes pages for printing and PDF so you save money and the environment.
|
| 30 |
+
* You can Print or get a PDF.
|
| 31 |
* Edit the page before printing or getting a PDF: remove the images and paragraphs you don't need to save ink!
|
| 32 |
|
| 33 |
PrintFriendly and PDF is the #1 print optimization technology, **as featured in [Lifehacker](http://lifehacker.com/5272212/print-friendly-optimizes-web-pages-for-printing "PrintFriendly & PDF in Lifehacker"), [Mashable](http://mashable.com/2009/05/18/print-friendly/ "PrintFriendly & PDF in Mashable") & [makeuseof](http://www.makeuseof.com/dir/printfriendly-save-on-paper-and-ink/#comment-95052)**.
|
| 65 |
|
| 66 |
== Changelog ==
|
| 67 |
|
| 68 |
+
= 3.1.3 =
|
| 69 |
+
|
| 70 |
+
* Fixed bug with disable css option.
|
| 71 |
+
|
| 72 |
= 3.1.2 =
|
| 73 |
|
| 74 |
* Added disable css option to admin settings.
|
