Print, PDF, Email by PrintFriendly - Version 3.4.6

Version Description

  • Always removed PrintFriendly button underline regardless plugin CSS for button styles option
Download this release

Release Info

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

Code changes from version 3.4.5 to 3.4.6

Files changed (2) hide show
  1. pf.php +10 -6
  2. readme.txt +4 -1
pf.php CHANGED
@@ -5,11 +5,12 @@ Plugin Name: Print Friendly and PDF
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.4.5
9
  Author: Print Friendly
10
  Author URI: http://www.PrintFriendly.com
11
 
12
  Changelog :
 
13
  3.4.4 - Removed page content selection option - Wordpress Standard/Strict
14
  3.4.2 - Fixed the issue occured due to new changes made in the page content selection options
15
  3.4.1 - Improved page content selection options
@@ -213,23 +214,26 @@ if ( ! class_exists( 'PrintFriendly_WordPress' ) ) {
213
  *
214
  * @since 3.0
215
  */
216
- function front_head() {
 
 
 
 
 
 
 
217
 
218
  if ( isset( $this->options['enable_css'] ) && $this->options['enable_css'] != 'on' )
219
  return;
220
-
221
-
222
  ?>
223
  <style type="text/css" media="screen">
224
  div.printfriendly {
225
  margin: <?php echo $this->options['margin_top'].'px '.$this->options['margin_right'].'px '.$this->options['margin_bottom'].'px '.$this->options['margin_left'].'px'; ?>;
226
  }
227
  div.printfriendly a, div.printfriendly a:link, div.printfriendly a:visited {
228
- text-decoration: none;
229
  font-size: <?php echo $this->options['text_size']; ?>px;
230
  color: <?php echo $this->options['text_color']; ?>;
231
  vertical-align: bottom;
232
- border: none;
233
  }
234
 
235
  .printfriendly a:hover {
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.4.6
9
  Author: Print Friendly
10
  Author URI: http://www.PrintFriendly.com
11
 
12
  Changelog :
13
+ 3.4.6 - Always removed PrintFriendly button underline regardless plugin CSS for button styles option
14
  3.4.4 - Removed page content selection option - Wordpress Standard/Strict
15
  3.4.2 - Fixed the issue occured due to new changes made in the page content selection options
16
  3.4.1 - Improved page content selection options
214
  *
215
  * @since 3.0
216
  */
217
+ function front_head() { ?>
218
+ <style type="text/css" media="screen">
219
+ div.printfriendly a, div.printfriendly a:link, div.printfriendly a:hover, div.printfriendly a:visited {
220
+ text-decoration: none;
221
+ border: none;
222
+ }
223
+ </style>
224
+ <?php
225
 
226
  if ( isset( $this->options['enable_css'] ) && $this->options['enable_css'] != 'on' )
227
  return;
 
 
228
  ?>
229
  <style type="text/css" media="screen">
230
  div.printfriendly {
231
  margin: <?php echo $this->options['margin_top'].'px '.$this->options['margin_right'].'px '.$this->options['margin_bottom'].'px '.$this->options['margin_left'].'px'; ?>;
232
  }
233
  div.printfriendly a, div.printfriendly a:link, div.printfriendly a:visited {
 
234
  font-size: <?php echo $this->options['text_size']; ?>px;
235
  color: <?php echo $this->options['text_color']; ?>;
236
  vertical-align: bottom;
 
237
  }
238
 
239
  .printfriendly a:hover {
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: printfriendly,joostdevalk, jrf
3
  Tags: print, pdf, printer, printing, printable, widget, plugin
4
  Requires at least: 2.8
5
  Tested up to: 4.5.2
6
- Stable tag: 3.4.5
7
 
8
 
9
  The #1 Print and PDF button for your WordPress site. Printer Friendly pages without coding, css, or print.css. Fast, easy, and professional.
@@ -140,6 +140,9 @@ If you have any other issues with the plugin or the PrintFriendly widget, please
140
 
141
  == Changelog ==
142
 
 
 
 
143
  = 3.4.4 =
144
  * Removed page content selection option - Wordpress Standard/Strict
145
 
3
  Tags: print, pdf, printer, printing, printable, widget, plugin
4
  Requires at least: 2.8
5
  Tested up to: 4.5.2
6
+ Stable tag: 3.4.6
7
 
8
 
9
  The #1 Print and PDF button for your WordPress site. Printer Friendly pages without coding, css, or print.css. Fast, easy, and professional.
140
 
141
  == Changelog ==
142
 
143
+ = 3.4.6 =
144
+ * Always removed PrintFriendly button underline regardless plugin CSS for button styles option
145
+
146
  = 3.4.4 =
147
  * Removed page content selection option - Wordpress Standard/Strict
148