Changeset 2013586
- Timestamp:
- 01/16/2019 05:43:07 PM (7 years ago)
- Location:
- pesapal-pay/trunk
- Files:
-
- 1 added
- 3 edited
-
pesapal_pay.php (modified) (2 diffs)
-
pesapal_pay/addons/pesapal_pay_wp_travel.php (modified) (2 diffs)
-
pesapal_pay/resources/wp-travel.js (added)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pesapal-pay/trunk/pesapal_pay.php
r2011807 r2013586 3 3 Plugin Name: Pesapal Pay 4 4 Description: A quick way to integrate pesapal to your website to handle the payment process. All you need to do is set up what parameters to capture from the form and the plugin will do the rest 5 Version: 3.2. 15 Version: 3.2.2 6 6 Author: rixeo 7 7 Author URI: http://thebunch.co.ke/ … … 19 19 * @var string 20 20 */ 21 var $version = '3.2. 1';21 var $version = '3.2.2'; 22 22 23 23 /** -
pesapal-pay/trunk/pesapal_pay/addons/pesapal_pay_wp_travel.php
r2011907 r2013586 24 24 add_action( 'wp_travel_before_content_start', array( $this, 'after_payment' ) ); 25 25 add_action( 'pesapal_pay_process_success_ipn_transaction', array( $this, 'after_ipn' ), 10, 2 ); 26 add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); 26 27 } 27 28 … … 141 142 } 142 143 } 144 145 function enqueue_scripts() { 146 wp_register_script( 147 'pp-wp-travel', 148 pesapal_pay()->plugin_url . 'resources/wp-travel.js', 149 array( 'jquery' ), '1' 150 ); 151 wp_enqueue_script( 'pp-wp-travel' ); 152 } 143 153 } 144 154 PesaPal_Pay_Wp_travel::instance(); -
pesapal-pay/trunk/readme.txt
r2011807 r2013586 5 5 Requires at least: 4.4.0 6 6 Tested up to: 5.1 7 Stable tag: 3.2. 17 Stable tag: 3.2.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 51 51 52 52 == Changelog == 53 54 = 3.2.2 = 55 * Add: WP Travel script to show book button on PesaPal 56 * Fix: WP Travel integration when other gateways are active 53 57 54 58 = 3.2.1 =
Note: See TracChangeset
for help on using the changeset viewer.