Payment Form for PayPal Pro - Version 1.1.42

Version Description

  • Fixed jQuery slim conflict

=

Download this release

Release Info

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

Code changes from version 1.1.41 to 1.1.42

Files changed (3) hide show
  1. README.txt +5 -2
  2. cp_ppp.php +1 -1
  3. cp_ppp_public_int.inc.php +11 -9
README.txt CHANGED
@@ -254,7 +254,10 @@ A: In all plugin versions you can turn off IP tracking to avoid saving that user
254
  = 1.1.41 =
255
  * Fixed magic quotes issue
256
 
 
 
 
257
  == Upgrade Notice ==
258
 
259
- = 1.1.41 =
260
- * Fixed magic quotes issue
254
  = 1.1.41 =
255
  * Fixed magic quotes issue
256
 
257
+ = 1.1.42 =
258
+ * Fixed jQuery slim conflict
259
+
260
  == Upgrade Notice ==
261
 
262
+ = 1.1.42 =
263
+ * Fixed jQuery slim conflict
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.41
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.42
7
  Author: CodePeople
8
  Author URI: https://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro
9
  License: GPL
cp_ppp_public_int.inc.php CHANGED
@@ -108,15 +108,17 @@ $raw_form_str = str_replace('"','"',esc_attr($raw_form_str));
108
  }
109
  }
110
  function cfwpppro_blink(selector){
111
- $dexQuery = jQuery.noConflict();
112
- $dexQuery(selector).fadeOut(1000, function(){
113
- $dexQuery(this).fadeIn(1000, function(){
114
- try {
115
- if (cp_contactformpppro_ready_to_go)
116
- cfwpppro_blink(this);
117
- } catch (e) {}
118
- });
119
- });
 
 
120
  }
121
  </script>
122
  <?php
108
  }
109
  }
110
  function cfwpppro_blink(selector){
111
+ try {
112
+ $dexQuery = jQuery.noConflict();
113
+ $dexQuery(selector).fadeOut(1000, function(){
114
+ $dexQuery(this).fadeIn(1000, function(){
115
+ try {
116
+ if (cp_contactformpppro_ready_to_go)
117
+ cfwpppro_blink(this);
118
+ } catch (e) {}
119
+ });
120
+ });
121
+ } catch (e) {}
122
  }
123
  </script>
124
  <?php