Version Description
Download this release
Release Info
Developer | printfriendly |
Plugin | Print, PDF, Email by PrintFriendly |
Version | 3.14.7 |
Comparing to | |
See all releases |
Code changes from version 3.14.6 to 3.14.7
- pf.php +4 -3
- readme.txt +4 -2
pf.php
CHANGED
@@ -5,11 +5,12 @@ Plugin Name: Print, PDF & Email by PrintFriendly
|
|
5 |
Plugin URI: http://www.printfriendly.com
|
6 |
Description: PrintFriendly & PDF button for your website. Optimizes your pages and brand for print, pdf, and email.
|
7 |
Name and URL are included to ensure repeat visitors and new visitors when printed versions are shared.
|
8 |
-
Version: 3.14.
|
9 |
Author: Print, PDF, & Email by PrintFriendly
|
10 |
Author URI: http://www.PrintFriendly.com
|
11 |
|
12 |
Changelog :
|
|
|
13 |
3.14.6 - Improvements to CSS and how we load JS. Moved button CSS from page head to a seperate stylesheet. Load JS using async attribute (now that all major browsers support async attribute, we need not insert JS dynamically)
|
14 |
3.14.5 - New Feature: Password protected image option. Select this option if your images are password protected so they can be included in PDFs.
|
15 |
3.14.4 - Make save options work without Pro field(email, domain) validation check.
|
@@ -403,7 +404,7 @@ if ( ! class_exists( 'PrintFriendly_WordPress' ) ) {
|
|
403 |
color: <?php echo $this->options['text_color']; ?>;
|
404 |
}
|
405 |
</style>
|
406 |
-
<link rel="stylesheet" href="<?php echo plugin_dir_url(__FILE__); ?>printfriendly.css" media="screen"
|
407 |
<style type="text/css" media="print">
|
408 |
.printfriendly {
|
409 |
display: none;
|
@@ -549,7 +550,7 @@ if ( ! class_exists( 'PrintFriendly_WordPress' ) ) {
|
|
549 |
if ( 'none' != $this->options['content_position'] )
|
550 |
$align = ' pf-align'.$this->options['content_position'];
|
551 |
$href = str_replace("&", "&", $href );
|
552 |
-
$button = apply_filters( 'printfriendly_button', '<div class="printfriendly'.$align.'"><a href="'.$href.'" rel="nofollow" '.$onclick.' class="noslimstat" title="Printer Friendly, PDF & Email">'.$this->button().'</a></div>' );
|
553 |
return $button;
|
554 |
}
|
555 |
|
5 |
Plugin URI: http://www.printfriendly.com
|
6 |
Description: PrintFriendly & PDF button for your website. Optimizes your pages and brand for print, pdf, and email.
|
7 |
Name and URL are included to ensure repeat visitors and new visitors when printed versions are shared.
|
8 |
+
Version: 3.14.7
|
9 |
Author: Print, PDF, & Email by PrintFriendly
|
10 |
Author URI: http://www.PrintFriendly.com
|
11 |
|
12 |
Changelog :
|
13 |
+
3.14.7 - Remove unnessary closing style tag. Add outline:none to printfriendly button link to remove outline on click.
|
14 |
3.14.6 - Improvements to CSS and how we load JS. Moved button CSS from page head to a seperate stylesheet. Load JS using async attribute (now that all major browsers support async attribute, we need not insert JS dynamically)
|
15 |
3.14.5 - New Feature: Password protected image option. Select this option if your images are password protected so they can be included in PDFs.
|
16 |
3.14.4 - Make save options work without Pro field(email, domain) validation check.
|
404 |
color: <?php echo $this->options['text_color']; ?>;
|
405 |
}
|
406 |
</style>
|
407 |
+
<link rel="stylesheet" href="<?php echo plugin_dir_url(__FILE__); ?>printfriendly.css" media="screen" />
|
408 |
<style type="text/css" media="print">
|
409 |
.printfriendly {
|
410 |
display: none;
|
550 |
if ( 'none' != $this->options['content_position'] )
|
551 |
$align = ' pf-align'.$this->options['content_position'];
|
552 |
$href = str_replace("&", "&", $href );
|
553 |
+
$button = apply_filters( 'printfriendly_button', '<div class="printfriendly'.$align.'"><a href="'.$href.'" style="outline:none;" rel="nofollow" '.$onclick.' class="noslimstat" title="Printer Friendly, PDF & Email">'.$this->button().'</a></div>' );
|
554 |
return $button;
|
555 |
}
|
556 |
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: printfriendly, joostdevalk, jrf
|
3 |
Tags: print, pdf, email, print button, wp-print, print recipe, print post, print page, print widget, print plugin, printable, wp-pdf, pdf post, pdf page, pdf button, pdf widget, pdf plugin, woocommerce print, woocommerce pdf
|
4 |
Requires at least: 2.8
|
5 |
-
Tested up to: 5.2.
|
6 |
-
Stable tag: 3.14.
|
7 |
|
8 |
|
9 |
The #1 Print, PDF, Email button. Stylish, full featured, customizable. Add custom header, footer, and more.
|
@@ -143,6 +143,8 @@ You can [hide the Print, PDF, and Email button](https://support.printfriendly.co
|
|
143 |
|
144 |
|
145 |
== Changelog ==
|
|
|
|
|
146 |
|
147 |
= 3.15.6 =
|
148 |
* Improvements to CSS and how we load JS. Moved button CSS from page head to a seperate stylesheet. Load JS using async attribute (now that all major browsers support async attribute, we need not insert JS dynamically)
|
2 |
Contributors: printfriendly, joostdevalk, jrf
|
3 |
Tags: print, pdf, email, print button, wp-print, print recipe, print post, print page, print widget, print plugin, printable, wp-pdf, pdf post, pdf page, pdf button, pdf widget, pdf plugin, woocommerce print, woocommerce pdf
|
4 |
Requires at least: 2.8
|
5 |
+
Tested up to: 5.2.3
|
6 |
+
Stable tag: 3.14.7
|
7 |
|
8 |
|
9 |
The #1 Print, PDF, Email button. Stylish, full featured, customizable. Add custom header, footer, and more.
|
143 |
|
144 |
|
145 |
== Changelog ==
|
146 |
+
= 3.15.7 =
|
147 |
+
* Remove unnessary closing style tag. Add outline:none to printfriendly button link to remove outline on click.
|
148 |
|
149 |
= 3.15.6 =
|
150 |
* Improvements to CSS and how we load JS. Moved button CSS from page head to a seperate stylesheet. Load JS using async attribute (now that all major browsers support async attribute, we need not insert JS dynamically)
|