Version Description
- Fixed compatibility issue with cache optimization plugin
=
Download this release
Release Info
Developer | codepeople |
Plugin | Payment Form for PayPal Pro |
Version | 1.1.63 |
Comparing to | |
See all releases |
Code changes from version 1.1.62 to 1.1.63
- README.txt +5 -2
- cp_ppp.php +9 -1
README.txt
CHANGED
@@ -317,7 +317,10 @@ A: In all plugin versions you can turn off IP tracking to avoid saving that user
|
|
317 |
= 1.1.62 =
|
318 |
* Compatible with WordPress 5.4
|
319 |
|
|
|
|
|
|
|
320 |
== Upgrade Notice ==
|
321 |
|
322 |
-
= 1.1.
|
323 |
-
*
|
317 |
= 1.1.62 =
|
318 |
* Compatible with WordPress 5.4
|
319 |
|
320 |
+
= 1.1.63 =
|
321 |
+
* Fixed compatibility issue with cache optimization plugin
|
322 |
+
|
323 |
== Upgrade Notice ==
|
324 |
|
325 |
+
= 1.1.63 =
|
326 |
+
* Fixed compatibility issue with cache optimization plugin
|
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
|
@@ -1561,6 +1561,14 @@ class CP_PPP_Widget extends WP_Widget
|
|
1561 |
// optional opt-in deactivation feedback
|
1562 |
require_once 'cp-feedback.php';
|
1563 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1564 |
// code for compatibility with third party scripts
|
1565 |
add_filter('option_sbp_settings', 'cpcfpppro_sbp_fix_conflict' );
|
1566 |
function cpcfpppro_sbp_fix_conflict($option)
|
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.63
|
7 |
Author: CodePeople
|
8 |
Author URI: https://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro
|
9 |
License: GPL
|
1561 |
// optional opt-in deactivation feedback
|
1562 |
require_once 'cp-feedback.php';
|
1563 |
|
1564 |
+
// code for compatibility with third party scripts
|
1565 |
+
add_filter('litespeed_cache_optimize_js_excludes', 'cpcfpppro_litespeed_cache_optimize_js_excludes' );
|
1566 |
+
function cpcfpppro_litespeed_cache_optimize_js_excludes($options)
|
1567 |
+
{
|
1568 |
+
return "jquery.validate.min.js\njQuery.stringify.js\njquery.validate.js\njquery.js\n".$options;
|
1569 |
+
}
|
1570 |
+
|
1571 |
+
|
1572 |
// code for compatibility with third party scripts
|
1573 |
add_filter('option_sbp_settings', 'cpcfpppro_sbp_fix_conflict' );
|
1574 |
function cpcfpppro_sbp_fix_conflict($option)
|