Payment Form for PayPal Pro - Version 1.1.28

Version Description

  • Moved plugin website and links to SSL

=

Download this release

Release Info

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

Code changes from version 1.1.27 to 1.1.28

README.txt CHANGED
@@ -1,6 +1,6 @@
1
  === Payment Form for PayPal Pro ===
2
  Contributors: codepeople
3
- Donate link: http://wordpress.dwbooster.com/forms/paypal-payment-pro-form
4
  Tags: paypal,paypal pro,paypal advanced,pro,accept,credit,cards,card,payment,processing
5
  Requires at least: 3.0.5
6
  Tested up to: 4.8
@@ -46,7 +46,7 @@ The following features aren't part of the free version. The following features a
46
  * Visual form builder: The free version includes the payment form with an email field plus the required PayPal fields. If you need a different form you should opt for the commercial version.
47
  * In the commercial version PayPal Standard is supported in addition to PayPal Pro.
48
 
49
- If you are interested in a version with the pro features you can get it here: http://wordpress.dwbooster.com/forms/paypal-payment-pro-form
50
 
51
  = Language Support =
52
 
@@ -137,7 +137,7 @@ To install Payment Form for PayPal Pro, follow these steps:
137
 
138
  A: The product's page contains more information:
139
 
140
- http://wordpress.dwbooster.com/forms/paypal-payment-pro-form
141
 
142
  = Q: Where can I publish the PayPal Pro form with the PayPal button? =
143
 
@@ -208,7 +208,10 @@ If that doesn't work please check if your hosting service requires some specific
208
  = 1.1.27 =
209
  * New visual color pickers for captcha preferences
210
 
 
 
 
211
  == Upgrade Notice ==
212
 
213
- = 1.1.27 =
214
- * New visual color pickers for captcha preferences
1
  === Payment Form for PayPal Pro ===
2
  Contributors: codepeople
3
+ Donate link: https://wordpress.dwbooster.com/forms/paypal-payment-pro-form
4
  Tags: paypal,paypal pro,paypal advanced,pro,accept,credit,cards,card,payment,processing
5
  Requires at least: 3.0.5
6
  Tested up to: 4.8
46
  * Visual form builder: The free version includes the payment form with an email field plus the required PayPal fields. If you need a different form you should opt for the commercial version.
47
  * In the commercial version PayPal Standard is supported in addition to PayPal Pro.
48
 
49
+ If you are interested in a version with the pro features you can get it here: https://wordpress.dwbooster.com/forms/paypal-payment-pro-form
50
 
51
  = Language Support =
52
 
137
 
138
  A: The product's page contains more information:
139
 
140
+ https://wordpress.dwbooster.com/forms/paypal-payment-pro-form
141
 
142
  = Q: Where can I publish the PayPal Pro form with the PayPal button? =
143
 
208
  = 1.1.27 =
209
  * New visual color pickers for captcha preferences
210
 
211
+ = 1.1.28 =
212
+ * Moved plugin website and links to SSL
213
+
214
  == Upgrade Notice ==
215
 
216
+ = 1.1.28 =
217
+ * Moved plugin website and links to SSL
cp_ppp.php CHANGED
@@ -1,11 +1,11 @@
1
  <?php
2
  /*
3
  Plugin Name: Payment Form for PayPal Pro
4
- Plugin URI: http://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.27
7
  Author: CodePeople
8
- Author URI: http://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro
9
  License: GPL
10
  */
11
 
@@ -525,14 +525,14 @@ function cp_ppp_settingsLink($links) {
525
 
526
 
527
  function cp_ppp_helpLink($links) {
528
- $help_link = '<a href="http://wordpress.dwbooster.com/forms/cp-contact-form-with-paypal">'.__('Help').'</a>';
529
  array_unshift($links, $help_link);
530
  return $links;
531
  }
532
 
533
 
534
  function cp_ppp_customAdjustmentsLink($links) {
535
- $customAdjustments_link = '<a href="http://wordpress.dwbooster.com/contact-us">'.__('Request custom changes').'</a>';
536
  array_unshift($links, $customAdjustments_link);
537
  return $links;
538
  }
@@ -557,12 +557,12 @@ function cp_ppp_html_post_page() {
557
  {
558
  if (isset($_GET["page"]) &&$_GET["page"] == 'cp_ppp_upgrade')
559
  {
560
- echo("Redirecting to upgrade page...<script type='text/javascript'>document.location='http://wordpress.dwbooster.com/forms/paypal-payment-pro-form#download';</script>");
561
  exit;
562
  }
563
  else if (isset($_GET["page"]) &&$_GET["page"] == 'cp_ppp_demo')
564
  {
565
- echo("Redirecting to demo page...<script type='text/javascript'>document.location='http://wordpress.dwbooster.com/forms/cp-contact-form-with-paypal#demo';</script>");
566
  exit;
567
  }
568
  else
1
  <?php
2
  /*
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.28
7
  Author: CodePeople
8
+ Author URI: https://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro
9
  License: GPL
10
  */
11
 
525
 
526
 
527
  function cp_ppp_helpLink($links) {
528
+ $help_link = '<a href="https://wordpress.dwbooster.com/forms/cp-contact-form-with-paypal">'.__('Help').'</a>';
529
  array_unshift($links, $help_link);
530
  return $links;
531
  }
532
 
533
 
534
  function cp_ppp_customAdjustmentsLink($links) {
535
+ $customAdjustments_link = '<a href="https://wordpress.dwbooster.com/contact-us">'.__('Request custom changes').'</a>';
536
  array_unshift($links, $customAdjustments_link);
537
  return $links;
538
  }
557
  {
558
  if (isset($_GET["page"]) &&$_GET["page"] == 'cp_ppp_upgrade')
559
  {
560
+ echo("Redirecting to upgrade page...<script type='text/javascript'>document.location='https://wordpress.dwbooster.com/forms/paypal-payment-pro-form#download';</script>");
561
  exit;
562
  }
563
  else if (isset($_GET["page"]) &&$_GET["page"] == 'cp_ppp_demo')
564
  {
565
+ echo("Redirecting to demo page...<script type='text/javascript'>document.location='https://wordpress.dwbooster.com/forms/cp-contact-form-with-paypal#demo';</script>");
566
  exit;
567
  }
568
  else
cp_ppp_admin_int.php CHANGED
@@ -30,7 +30,7 @@ $scriptmethod = cp_ppp_get_option('script_load_method','0');
30
  if (typeof $easyFormQueryPPP == 'undefined')
31
  {
32
  // This code won't be used in most cases. This code is for preventing problems in wrong WP themes and conflicts with third party plugins.
33
- alert('JQuery not detected in your WordPress, some features may not work. You can contact our support service for more information: http://wordpress.dwbooster.com/support');
34
  }
35
  </script>
36
 
@@ -49,7 +49,7 @@ $scriptmethod = cp_ppp_get_option('script_load_method','0');
49
  <strong>The PayPal integration available in this plugin requires a PayPal Pro account.</strong>
50
  <br><br />
51
  If you aren't sure if you have a <strong>PayPal Pro account</strong> or if you are looking for a classic <strong>PayPal Standard</strong> integration
52
- then use the <a href="http://wordpress.dwbooster.com/forms/cp-contact-form-with-paypal">CP Contact Form with PayPal</a> plugin.
53
  <br /><br />
54
  You can check the differences betwen <strong>PayPal Pro</strong> and <strong>PayPal Standard</strong> at <a href="https://www.paypal.com/webapps/mpp/compare-business-products" target="_blank">https://www.paypal.com/webapps/mpp/compare-business-products</a>
55
  </div>
@@ -70,7 +70,7 @@ then use the <a href="http://wordpress.dwbooster.com/forms/cp-contact-form-with-
70
  <td><select name="enable_paypal" onchange="cfpp_update_pp_payment_selection();">
71
  <option value="3" <?php if (cp_ppp_get_option('enable_paypal',CP_PPP_DEFAULT_ENABLE_PAYPAL) == '3') echo 'selected'; ?> >PayPal Pro</option>
72
  </select>
73
- <br /><em style="font-size:11px;">Note: This plugin is for <strong>PayPal Pro</strong> payments. For <strong>PayPal Standard</strong> use the <a href="http://wordpress.dwbooster.com/forms/cp-contact-form-with-paypal">CP Contact Form with PayPal plugin</a>.</em>
74
 
75
  <div id="cfpp_paypal_options_label" style="display:none;margin-top:10px;background:#EEF5FB;border: 1px dotted #888888;padding:10px;width:260px;">
76
  Label for the "<strong>Pay with PayPal</strong>" option:<br />
@@ -133,7 +133,7 @@ then use the <a href="http://wordpress.dwbooster.com/forms/cp-contact-form-with-
133
  </tr>
134
 
135
  <tr valign="top">
136
- <th scope="row" colspan="2">---- The following fields are useful in the <a href="http://wordpress.dwbooster.com/forms/paypal-payment-pro-form#download">commercial version of the plugin</a>:</th>
137
  </tr>
138
 
139
  <tr valign="top" style="color:#cccccc">
@@ -335,7 +335,7 @@ then use the <a href="http://wordpress.dwbooster.com/forms/cp-contact-form-with-
335
  <div class="inside">
336
 
337
  <div style="border:1px solid black;background-color:#ffffaa;padding:10px;">
338
- The following Form Builder is editable in the <a href="http://wordpress.dwbooster.com/forms/paypal-payment-pro-form#download">commercial version of the plugin</a>:
339
  </div>
340
  <br />
341
  <input type="hidden" name="form_structure" id="form_structure" size="180" value="<?php echo str_replace('"','&quot;',str_replace("\r","",str_replace("\n","",esc_attr(cp_ppp_cleanJSON(cp_ppp_get_option('form_structure', CP_PPP_DEFAULT_form_structure)))))); ?>" />
@@ -492,7 +492,7 @@ then use the <a href="http://wordpress.dwbooster.com/forms/cp-contact-form-with-
492
  <td colspan="2"> - The <em>class="pbSubmit"</em> can be used to modify the button styles. <br />
493
  - The styles can be applied into any of the CSS files of your theme or into the CSS file <em>"cp-contact-form-with-paypal\css\stylepublic.css"</em>. <br />
494
  - For further modifications the submit button is located at the end of the file <em>"cp_ppp_public_int.inc.php"</em>.<br />
495
- - For general CSS styles modifications to the form and samples <a href="http://wordpress.dwbooster.com/faq/cp-contact-form-with-paypal#q61" target="_blank">check this FAQ</a>.
496
  </tr>
497
  </table>
498
  </div>
@@ -708,7 +708,7 @@ then use the <a href="http://wordpress.dwbooster.com/forms/cp-contact-form-with-
708
  <p class="submit"><input type="submit" name="submit" id="submit" class="button-primary" value="Save Changes" /></p>
709
 
710
 
711
- [<a href="http://wordpress.dwbooster.com/support" target="_blank">Request Custom Modifications</a>] | [<a href="http://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro" target="_blank">Help</a>]
712
  </form>
713
  </div>
714
  <script type="text/javascript">generateCaptcha();</script>
30
  if (typeof $easyFormQueryPPP == 'undefined')
31
  {
32
  // This code won't be used in most cases. This code is for preventing problems in wrong WP themes and conflicts with third party plugins.
33
+ alert('JQuery not detected in your WordPress, some features may not work. You can contact our support service for more information: https://wordpress.dwbooster.com/support');
34
  }
35
  </script>
36
 
49
  <strong>The PayPal integration available in this plugin requires a PayPal Pro account.</strong>
50
  <br><br />
51
  If you aren't sure if you have a <strong>PayPal Pro account</strong> or if you are looking for a classic <strong>PayPal Standard</strong> integration
52
+ then use the <a href="https://wordpress.dwbooster.com/forms/cp-contact-form-with-paypal">CP Contact Form with PayPal</a> plugin.
53
  <br /><br />
54
  You can check the differences betwen <strong>PayPal Pro</strong> and <strong>PayPal Standard</strong> at <a href="https://www.paypal.com/webapps/mpp/compare-business-products" target="_blank">https://www.paypal.com/webapps/mpp/compare-business-products</a>
55
  </div>
70
  <td><select name="enable_paypal" onchange="cfpp_update_pp_payment_selection();">
71
  <option value="3" <?php if (cp_ppp_get_option('enable_paypal',CP_PPP_DEFAULT_ENABLE_PAYPAL) == '3') echo 'selected'; ?> >PayPal Pro</option>
72
  </select>
73
+ <br /><em style="font-size:11px;">Note: This plugin is for <strong>PayPal Pro</strong> payments. For <strong>PayPal Standard</strong> use the <a href="https://wordpress.dwbooster.com/forms/cp-contact-form-with-paypal">CP Contact Form with PayPal plugin</a>.</em>
74
 
75
  <div id="cfpp_paypal_options_label" style="display:none;margin-top:10px;background:#EEF5FB;border: 1px dotted #888888;padding:10px;width:260px;">
76
  Label for the "<strong>Pay with PayPal</strong>" option:<br />
133
  </tr>
134
 
135
  <tr valign="top">
136
+ <th scope="row" colspan="2">---- The following fields are useful in the <a href="https://wordpress.dwbooster.com/forms/paypal-payment-pro-form#download">commercial version of the plugin</a>:</th>
137
  </tr>
138
 
139
  <tr valign="top" style="color:#cccccc">
335
  <div class="inside">
336
 
337
  <div style="border:1px solid black;background-color:#ffffaa;padding:10px;">
338
+ The following Form Builder is editable in the <a href="https://wordpress.dwbooster.com/forms/paypal-payment-pro-form#download">commercial version of the plugin</a>:
339
  </div>
340
  <br />
341
  <input type="hidden" name="form_structure" id="form_structure" size="180" value="<?php echo str_replace('"','&quot;',str_replace("\r","",str_replace("\n","",esc_attr(cp_ppp_cleanJSON(cp_ppp_get_option('form_structure', CP_PPP_DEFAULT_form_structure)))))); ?>" />
492
  <td colspan="2"> - The <em>class="pbSubmit"</em> can be used to modify the button styles. <br />
493
  - The styles can be applied into any of the CSS files of your theme or into the CSS file <em>"cp-contact-form-with-paypal\css\stylepublic.css"</em>. <br />
494
  - For further modifications the submit button is located at the end of the file <em>"cp_ppp_public_int.inc.php"</em>.<br />
495
+ - For general CSS styles modifications to the form and samples <a href="https://wordpress.dwbooster.com/faq/cp-contact-form-with-paypal#q61" target="_blank">check this FAQ</a>.
496
  </tr>
497
  </table>
498
  </div>
708
  <p class="submit"><input type="submit" name="submit" id="submit" class="button-primary" value="Save Changes" /></p>
709
 
710
 
711
+ [<a href="https://wordpress.dwbooster.com/support" target="_blank">Request Custom Modifications</a>] | [<a href="https://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro" target="_blank">Help</a>]
712
  </form>
713
  </div>
714
  <script type="text/javascript">generateCaptcha();</script>
cp_ppp_admin_int_list.inc.php CHANGED
@@ -281,7 +281,7 @@ if ($message) echo "<div id='setting-error-settings_updated' class='updated sett
281
  </div>
282
 
283
 
284
- [<a href="http://wordpress.dwbooster.com/support" target="_blank">Request Custom Modifications</a>] | [<a href="http://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro" target="_blank">Help</a>]
285
  </form>
286
  </div>
287
 
281
  </div>
282
 
283
 
284
+ [<a href="https://wordpress.dwbooster.com/support" target="_blank">Request Custom Modifications</a>] | [<a href="https://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro" target="_blank">Help</a>]
285
  </form>
286
  </div>
287