PayPal Buy Now Button - Version 1.6.4

Version Description

  • Bug fix - fixed border sometimes showing around paypal 1x1 pixel image
Download this release

Release Info

Developer scottpaterson
Plugin Icon 128x128 PayPal Buy Now Button
Version 1.6.4
Comparing to
See all releases

Code changes from version 1.6.3 to 1.6.4

Files changed (2) hide show
  1. readme.txt +8 -2
  2. wp-ecommerce-paypal.php +2 -2
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
  === Easy PayPal Buy Now Button ===
2
  Contributors: scottpaterson,wp-plugin
3
  Donate link: https://wpplugin.org/donate/
4
- Tags: ecommerce, paypal, button, buy now, shortcode, buy now button, paypal button, paypal buy now button, paypal plugin, paypal plugin for wordpress, easy
5
  Author URI: https://wpplugin.org
6
  Requires at least: 3.0
7
  Tested up to: 4.1.1
8
- Stable tag: 1.6.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -85,6 +85,9 @@ Yes, there is no limit to the amount you can put on one post / page, or your ent
85
 
86
  == Changelog ==
87
 
 
 
 
88
  = 1.6.3 =
89
  * Small fixes
90
 
@@ -144,6 +147,9 @@ Yes, there is no limit to the amount you can put on one post / page, or your ent
144
 
145
  == Upgrade Notice ==
146
 
 
 
 
147
  = 1.6.3 =
148
  Small fixes
149
 
1
  === Easy PayPal Buy Now Button ===
2
  Contributors: scottpaterson,wp-plugin
3
  Donate link: https://wpplugin.org/donate/
4
+ Tags: paypal, ecommerce, buy now, paypal button, gateway, payment
5
  Author URI: https://wpplugin.org
6
  Requires at least: 3.0
7
  Tested up to: 4.1.1
8
+ Stable tag: 1.6.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
85
 
86
  == Changelog ==
87
 
88
+ = 1.6.4 =
89
+ * Bug fix - fixed border sometimes showing around paypal 1x1 pixel image
90
+
91
  = 1.6.3 =
92
  * Small fixes
93
 
147
 
148
  == Upgrade Notice ==
149
 
150
+ = 1.6.4 =
151
+ Bug fix - fixed border sometimes showing around paypal 1x1 pixel image
152
+
153
  = 1.6.3 =
154
  Small fixes
155
 
wp-ecommerce-paypal.php CHANGED
@@ -7,7 +7,7 @@ Description: A simple and easy way to integrate PayPal into your WordPress websi
7
  Author: Scott Paterson
8
  Author URI: https://wpplugin.org
9
  License: GPL2
10
- Version: 1.6.3
11
  */
12
 
13
  /* Copyright 2014-2015 Scott Paterson
@@ -749,7 +749,7 @@ $output .= "<input type='hidden' name='return' value='". $value['return'] ."' />
749
  $output .= "<input type='hidden' name='bn' value='WPPlugin_SP'>";
750
  $output .= "<input type='hidden' name='cancel_return' value='". $value['cancel'] ."' />";
751
  $output .= "<input style='border: none;' class='paypalbuttonimage' type='image' src='$img' border='0' name='submit' alt='Make your payments with PayPal. It is free, secure, effective.'>";
752
- $output .= "<img alt='' border='0' src='https://www.paypal.com/$language/i/scr/pixel.gif' width='1' height='1'>";
753
  $output .= "</form></div>";
754
 
755
  return $output;
7
  Author: Scott Paterson
8
  Author URI: https://wpplugin.org
9
  License: GPL2
10
+ Version: 1.6.4
11
  */
12
 
13
  /* Copyright 2014-2015 Scott Paterson
749
  $output .= "<input type='hidden' name='bn' value='WPPlugin_SP'>";
750
  $output .= "<input type='hidden' name='cancel_return' value='". $value['cancel'] ."' />";
751
  $output .= "<input style='border: none;' class='paypalbuttonimage' type='image' src='$img' border='0' name='submit' alt='Make your payments with PayPal. It is free, secure, effective.'>";
752
+ $output .= "<img alt='' border='0' style='border:none;display:none;' src='https://www.paypal.com/$language/i/scr/pixel.gif' width='1' height='1'>";
753
  $output .= "</form></div>";
754
 
755
  return $output;