Version Description
- Fixed jQuery slim conflict
=
Download this release
Release Info
Developer | codepeople |
Plugin | 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
- README.txt +5 -2
- cp_ppp.php +1 -1
- 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.
|
260 |
-
* Fixed
|
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.
|
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 |
-
|
112 |
-
|
113 |
-
$dexQuery(
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
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
|