WP Easy Paypal Payment Accept - Version 3.0

Version Description

Download this release

Release Info

Developer mra13
Plugin Icon 128x128 WP Easy Paypal Payment Accept
Version 3.0
Comparing to
See all releases

Code changes from version 2.8 to 3.0

Files changed (2) hide show
  1. WP_Accept_Paypal_Payment.php +6 -2
  2. readme.txt +5 -3
WP_Accept_Paypal_Payment.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: WP Easy Paypal Payment Accept
4
- Version: v2.8
5
  Plugin URI: http://www.tipsandtricks-hq.com/?p=120
6
  Author: Tips and Tricks HQ
7
  Author URI: http://www.tipsandtricks-hq.com/
@@ -19,7 +19,7 @@ Description: Easy to use Wordpress plugin to accept paypal payment for a service
19
  GNU General Public License for more details.
20
  */
21
 
22
- $wp_paypal_payment_version = 2.8;
23
 
24
  // Some default options
25
  add_option('wp_pp_payment_email', 'korin.iverson@gmail.com');
@@ -57,7 +57,11 @@ function wpapp_buy_now_button_shortcode( $atts, $content ) {
57
 
58
  }
59
  $payment_button_img_src = get_option('payment_button_type');
 
60
  include_once ('shortcode_view.php');
 
 
 
61
  }
62
 
63
  add_action( 'init', 'wpapp_shortcode_plugin_enqueue_jquery' );
1
  <?php
2
  /*
3
  Plugin Name: WP Easy Paypal Payment Accept
4
+ Version: v3.0
5
  Plugin URI: http://www.tipsandtricks-hq.com/?p=120
6
  Author: Tips and Tricks HQ
7
  Author URI: http://www.tipsandtricks-hq.com/
19
  GNU General Public License for more details.
20
  */
21
 
22
+ $wp_paypal_payment_version = 3.0;
23
 
24
  // Some default options
25
  add_option('wp_pp_payment_email', 'korin.iverson@gmail.com');
57
 
58
  }
59
  $payment_button_img_src = get_option('payment_button_type');
60
+ ob_start();
61
  include_once ('shortcode_view.php');
62
+ $output = ob_get_contents();
63
+ ob_end_clean();
64
+ return $output;
65
  }
66
 
67
  add_action( 'init', 'wpapp_shortcode_plugin_enqueue_jquery' );
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Ruhul Amin, Tips and Tricks HQ
3
  Donate link: http://www.tipsandtricks-hq.com
4
  Tags: Paypal payment, Accept payment for services or product, PayPal donation, wordpress paypal, paypal for wordpress, paypal plugin for wordpress, paypal integration, paypal
5
  Requires at least: 3.0
6
- Tested up to: 3.4.2
7
- Stable tag: 2.8
8
  License: GPLv2 or later
9
 
10
  Easy to use Wordpress plugin to accept paypal payment for a service or product or donation in one click
@@ -47,5 +47,7 @@ Visit the plugin site at http://www.tipsandtricks-hq.com/?p=120 for screenshots.
47
 
48
  == Changelog ==
49
 
50
- Changelog can be found at the following URL
 
 
51
  http://www.tipsandtricks-hq.com/?p=120
3
  Donate link: http://www.tipsandtricks-hq.com
4
  Tags: Paypal payment, Accept payment for services or product, PayPal donation, wordpress paypal, paypal for wordpress, paypal plugin for wordpress, paypal integration, paypal
5
  Requires at least: 3.0
6
+ Tested up to: 3.6.1
7
+ Stable tag: 3.0
8
  License: GPLv2 or later
9
 
10
  Easy to use Wordpress plugin to accept paypal payment for a service or product or donation in one click
47
 
48
  == Changelog ==
49
 
50
+ - 3.0 - WordPress 3.6 compatibility update
51
+
52
+ Changelog for old versions can be found at the following URL
53
  http://www.tipsandtricks-hq.com/?p=120