PayPal Buy Now Button - Version 1.2.1

Version Description

  • Fixed border around button problem
Download this release

Release Info

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

Code changes from version 1.2 to 1.2.1

Files changed (2) hide show
  1. readme.txt +7 -1
  2. wp-ecommerce-paypal.php +0 -5
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: ecommerce, paypal, button, buy now, shortcode, buy now button, paypal butt
5
  Author URI: https://wpplugin.org
6
  Requires at least: 3.0
7
  Tested up to: 4.1
8
- Stable tag: 1.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -78,6 +78,9 @@ Yes, there is no limit to the amount you can put on one post / page, or your ent
78
 
79
  == Changelog ==
80
 
 
 
 
81
  = 1.2 =
82
  * Stying and Layout. Removed license manager to comply with wordpress.org terms. Changed Plugin URI links.
83
 
@@ -108,6 +111,9 @@ Yes, there is no limit to the amount you can put on one post / page, or your ent
108
  == Upgrade Notice ==
109
 
110
 
 
 
 
111
  = 1.2 =
112
  Stying and Layout. Removed license manager to comply with wordpress.org terms. Changed Plugin URI links.
113
 
5
  Author URI: https://wpplugin.org
6
  Requires at least: 3.0
7
  Tested up to: 4.1
8
+ Stable tag: 1.2.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
78
 
79
  == Changelog ==
80
 
81
+ = 1.2.1 =
82
+ * Fixed border around button problem
83
+
84
  = 1.2 =
85
  * Stying and Layout. Removed license manager to comply with wordpress.org terms. Changed Plugin URI links.
86
 
111
  == Upgrade Notice ==
112
 
113
 
114
+ = 1.2.1 =
115
+ Fixed border around button problem
116
+
117
  = 1.2 =
118
  Stying and Layout. Removed license manager to comply with wordpress.org terms. Changed Plugin URI links.
119
 
wp-ecommerce-paypal.php CHANGED
@@ -71,15 +71,11 @@ $wpecpp_settingsoptions = array(
71
  add_option("wpecpp_settingsoptions", $wpecpp_settingsoptions);
72
  }
73
  function wpecpp_activate() {
74
- update_option("wpecpp_plicsence_key_status","");
75
  }
76
  function wpecpp_deactivate() {
77
  delete_option("wpecpp_my_plugin_notice_shown");
78
  }
79
  function wpecpp_uninstall() {
80
- delete_option("wpecpp_settingsoptions");
81
- delete_option("wpecpp_plicsence_key_status");
82
- delete_option("wpecpp_plicsence_key");
83
  }
84
  }
85
 
@@ -88,7 +84,6 @@ delete_option("wpecpp_plicsence_key");
88
 
89
 
90
 
91
-
92
  // display activation notice
93
 
94
  add_action('admin_notices', 'wpecpp_my_plugin_admin_notices');
71
  add_option("wpecpp_settingsoptions", $wpecpp_settingsoptions);
72
  }
73
  function wpecpp_activate() {
 
74
  }
75
  function wpecpp_deactivate() {
76
  delete_option("wpecpp_my_plugin_notice_shown");
77
  }
78
  function wpecpp_uninstall() {
 
 
 
79
  }
80
  }
81
 
84
 
85
 
86
 
 
87
  // display activation notice
88
 
89
  add_action('admin_notices', 'wpecpp_my_plugin_admin_notices');