Version Description
- 6/15/17
- Updated - Tested plugin up to WordPress version 4.8
- Fix - Fixed code formatting issue
Download this release
Release Info
Developer | scottpaterson |
Plugin | PayPal Donation |
Version | 1.2.3 |
Comparing to | |
See all releases |
Code changes from version 1.2.2 to 1.2.3
- easy-paypal-donation.php +14 -14
- readme.txt +8 -2
easy-paypal-donation.php
CHANGED
@@ -8,10 +8,10 @@ Tags: donation, donate, donations, charity, paypal, paypal donation, ecommerce,
|
|
8 |
Author: Scott Paterson
|
9 |
Author URI: https://wpplugin.org
|
10 |
License: GPL2
|
11 |
-
Version: 1.2.
|
12 |
*/
|
13 |
|
14 |
-
/* Copyright 2014-
|
15 |
|
16 |
This program is free software; you can redistribute it and/or modify
|
17 |
it under the terms of the GNU General Public License as published by
|
@@ -43,19 +43,19 @@ class wpedon_wpeasydonation {
|
|
43 |
register_uninstall_hook( __FILE__, array( __CLASS__, "wpedon_uninstall" ));
|
44 |
|
45 |
$wpedon_settingsoptions = array(
|
46 |
-
'currency'
|
47 |
-
'language'
|
48 |
-
'liveaccount'
|
49 |
'sandboxaccount' => '',
|
50 |
-
'mode'
|
51 |
-
'size'
|
52 |
-
'opens'
|
53 |
-
'no_note'
|
54 |
-
'no_shipping'
|
55 |
-
'cancel'
|
56 |
-
'return'
|
57 |
-
'note'
|
58 |
-
'upload_image'
|
59 |
);
|
60 |
|
61 |
add_option("wpedon_settingsoptions", $wpedon_settingsoptions);
|
8 |
Author: Scott Paterson
|
9 |
Author URI: https://wpplugin.org
|
10 |
License: GPL2
|
11 |
+
Version: 1.2.3
|
12 |
*/
|
13 |
|
14 |
+
/* Copyright 2014-2017 Scott Paterson
|
15 |
|
16 |
This program is free software; you can redistribute it and/or modify
|
17 |
it under the terms of the GNU General Public License as published by
|
43 |
register_uninstall_hook( __FILE__, array( __CLASS__, "wpedon_uninstall" ));
|
44 |
|
45 |
$wpedon_settingsoptions = array(
|
46 |
+
'currency' => '25',
|
47 |
+
'language' => '3',
|
48 |
+
'liveaccount' => '',
|
49 |
'sandboxaccount' => '',
|
50 |
+
'mode' => '2',
|
51 |
+
'size' => '2',
|
52 |
+
'opens' => '2',
|
53 |
+
'no_note' => '1',
|
54 |
+
'no_shipping' => '1',
|
55 |
+
'cancel' => '',
|
56 |
+
'return' => '',
|
57 |
+
'note' => '1',
|
58 |
+
'upload_image' => '',
|
59 |
);
|
60 |
|
61 |
add_option("wpedon_settingsoptions", $wpedon_settingsoptions);
|
readme.txt
CHANGED
@@ -4,8 +4,9 @@ Donate link: https://wpplugin.org/donate/
|
|
4 |
Tags: donation, donate, donations, charity, paypal, gateway, paypal donation, paypal donate
|
5 |
Author URI: https://wpplugin.org
|
6 |
Requires at least: 3.0
|
7 |
-
Tested up to: 4.
|
8 |
-
|
|
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -89,6 +90,11 @@ Yes, there is no limit to the amount of PayPal donations buttons that you can pu
|
|
89 |
|
90 |
== Changelog ==
|
91 |
|
|
|
|
|
|
|
|
|
|
|
92 |
= 1.2.2 =
|
93 |
* 8/26/16
|
94 |
* Updated - Updated the settings page right sidebar to offer information about the pro version.
|
4 |
Tags: donation, donate, donations, charity, paypal, gateway, paypal donation, paypal donate
|
5 |
Author URI: https://wpplugin.org
|
6 |
Requires at least: 3.0
|
7 |
+
Tested up to: 4.9
|
8 |
+
Requires PHP: 5.4
|
9 |
+
Stable tag: 1.2.3
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
90 |
|
91 |
== Changelog ==
|
92 |
|
93 |
+
= 1.2.3 =
|
94 |
+
* 6/15/17
|
95 |
+
* Updated - Tested plugin up to WordPress version 4.8
|
96 |
+
* Fix - Fixed code formatting issue
|
97 |
+
|
98 |
= 1.2.2 =
|
99 |
* 8/26/16
|
100 |
* Updated - Updated the settings page right sidebar to offer information about the pro version.
|