Version Description
- Fixed bug in submission process
=
Download this release
Release Info
Developer | codepeople |
Plugin | Payment Form for PayPal Pro |
Version | 1.1.49 |
Comparing to | |
See all releases |
Code changes from version 1.1.48 to 1.1.49
- README.txt +5 -2
- cp_ppp.php +2 -2
README.txt
CHANGED
@@ -275,7 +275,10 @@ A: In all plugin versions you can turn off IP tracking to avoid saving that user
|
|
275 |
= 1.1.48 =
|
276 |
* Compatible with WordPress 5.1
|
277 |
|
|
|
|
|
|
|
278 |
== Upgrade Notice ==
|
279 |
|
280 |
-
= 1.1.
|
281 |
-
*
|
275 |
= 1.1.48 =
|
276 |
* Compatible with WordPress 5.1
|
277 |
|
278 |
+
= 1.1.49 =
|
279 |
+
* Fixed bug in submission process
|
280 |
+
|
281 |
== Upgrade Notice ==
|
282 |
|
283 |
+
= 1.1.49 =
|
284 |
+
* Fixed bug in submission process
|
cp_ppp.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Payment Form for PayPal Pro
|
4 |
Plugin URI: https://wordpress.dwbooster.com/forms/paypal-payment-pro-form
|
5 |
Description: Payment Form for PayPal Pro to accept credit cards directly into your website. Official PayPal Partner.
|
6 |
-
Version: 1.1.
|
7 |
Author: CodePeople
|
8 |
Author URI: https://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro
|
9 |
License: GPL
|
@@ -103,7 +103,7 @@ require_once 'cp_ppp_data_source.inc.php';
|
|
103 |
register_activation_hook(__FILE__,'cp_ppp_install');
|
104 |
|
105 |
add_action( 'init', 'cp_ppp_check_posted_data', 11 );
|
106 |
-
add_action( 'widgets_init',
|
107 |
|
108 |
function cpppp_plugin_init() {
|
109 |
load_plugin_textdomain( 'cpppp', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
3 |
Plugin Name: Payment Form for PayPal Pro
|
4 |
Plugin URI: https://wordpress.dwbooster.com/forms/paypal-payment-pro-form
|
5 |
Description: Payment Form for PayPal Pro to accept credit cards directly into your website. Official PayPal Partner.
|
6 |
+
Version: 1.1.49
|
7 |
Author: CodePeople
|
8 |
Author URI: https://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro
|
9 |
License: GPL
|
103 |
register_activation_hook(__FILE__,'cp_ppp_install');
|
104 |
|
105 |
add_action( 'init', 'cp_ppp_check_posted_data', 11 );
|
106 |
+
add_action( 'widgets_init', function () { return register_widget("CP_PPP_Widget"); } );
|
107 |
|
108 |
function cpppp_plugin_init() {
|
109 |
load_plugin_textdomain( 'cpppp', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|