Payment Form for PayPal Pro - Version 1.1.58

Version Description

  • Compatible with WordPress 5.3

=

Download this release

Release Info

Developer codepeople
Plugin Icon 128x128 Payment Form for PayPal Pro
Version 1.1.58
Comparing to
See all releases

Code changes from version 1.1.57 to 1.1.58

Files changed (3) hide show
  1. README.txt +5 -2
  2. cp_ppp.php +1 -1
  3. js/block.js +2 -2
README.txt CHANGED
@@ -302,7 +302,10 @@ A: In all plugin versions you can turn off IP tracking to avoid saving that user
302
  = 1.1.57 =
303
  * Fix to captcha image and db encoding
304
 
 
 
 
305
  == Upgrade Notice ==
306
 
307
- = 1.1.57 =
308
- * Fix to captcha image and db encoding
302
  = 1.1.57 =
303
  * Fix to captcha image and db encoding
304
 
305
+ = 1.1.58 =
306
+ * Compatible with WordPress 5.3
307
+
308
  == Upgrade Notice ==
309
 
310
+ = 1.1.58 =
311
+ * Compatible with WordPress 5.3
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.57
7
  Author: CodePeople
8
  Author URI: https://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro
9
  License: GPL
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.58
7
  Author: CodePeople
8
  Author URI: https://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro
9
  License: GPL
js/block.js CHANGED
@@ -103,12 +103,12 @@ jQuery(function()
103
  }
104
  );
105
  function cpcfwpppro_renderForm(id) {
106
- if ($("#form_structure"+id).length)
107
  {
108
  try
109
  {
110
  var cp_appbooking_fbuilder_myconfig = {"obj":"{\"pub\":true,\"identifier\":\"_"+id+"\",\"messages\": {}}"};
111
- var f = $("#fbuilder_"+id).fbuilder($.parseJSON(cp_appbooking_fbuilder_myconfig.obj));
112
  f.fBuild.loadData("form_structure"+id);
113
  } catch (e) { setTimeout ('cpcfwpppro_renderForm('+id+')',250);}
114
  }
103
  }
104
  );
105
  function cpcfwpppro_renderForm(id) {
106
+ if (jQuery("#form_structure"+id).length)
107
  {
108
  try
109
  {
110
  var cp_appbooking_fbuilder_myconfig = {"obj":"{\"pub\":true,\"identifier\":\"_"+id+"\",\"messages\": {}}"};
111
+ var f = jQuery("#fbuilder_"+id).fbuilder(jQuery.parseJSON(cp_appbooking_fbuilder_myconfig.obj));
112
  f.fBuild.loadData("form_structure"+id);
113
  } catch (e) { setTimeout ('cpcfwpppro_renderForm('+id+')',250);}
114
  }