Changeset 2012439
- Timestamp:
- 01/15/2019 01:08:32 AM (7 years ago)
- Location:
- woo-voguepay/trunk
- Files:
-
- 2 added
- 3 edited
-
README.txt (modified) (4 diffs)
-
assets/woo-voguepay-cart.js (added)
-
includes/class.extracharge.php (added)
-
includes/class.voguepay.php (modified) (3 diffs)
-
woo-voguepay.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-voguepay/trunk/README.txt
r1992199 r2012439 3 3 Tags: woocommerce, payment gateway,online payment, voguepay, mastercard,payment plugin, visa,kunlexzy, nigeria 4 4 Requires at least: 4.4 5 Tested up to: 5.0 6 Stable tag: 1. 3.05 Tested up to: 5.0.3 6 Stable tag: 1.4.0 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 37 37 * Inline payment custom message 38 38 * Sending customer billing information during payment 39 39 * Setup extra charge as a fixed price or a percentage 40 40 41 41 42 == Installation == … … 53 54 54 55 = Manual Installation = 55 1. Download the plugin zip file .56 1. Download the plugin zip file 56 57 2. Create a folder "woo-voguepay" in wp-content/plugins and extract all contents from the zip into it *or* upload the zip via the plugin section on the admin page. 57 58 3. Click installed plugins in plugin tab … … 60 61 61 62 == Changelog == 63 = 1.4.0 = 64 * Extra charge option added 65 * Reolved "message" conflict 62 66 = 1.3.0 = 63 67 * Payment memo descprition option -
woo-voguepay/trunk/includes/class.voguepay.php
r1986710 r2012439 50 50 } 51 51 52 // if($this->extra_charges_class===null) $this->extra_charges_class=new VPWOO_Voguepay_Plugin_Extra_Charges(); 53 52 54 //Hooks 53 55 add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) ); … … 78 80 'title' => 'VoguePay Merchant ID', 79 81 'type' => 'text', 80 'description' => 'Enter Your VoguePay Merchant ID , this can be gotten on your account page when you login on VoguePay' ,82 'description' => 'Enter Your VoguePay Merchant ID Eg. 0123-093384' , 81 83 'default' => '', 82 84 'desc_tip' => true … … 363 365 $order_id = method_exists( $order, 'get_id' ) ? $order->get_id() : $order->id; 364 366 $voguepay_args = array( 365 'v_merchant_id' => ($this->demo)?'demo': $this->merchant_id,367 'v_merchant_id' => ($this->demo)?'demo':trim($this->merchant_id), 366 368 'cur' => get_woocommerce_currency(), 367 369 'memo' => "Payment for Order ID:: $order_id".$memo, -
woo-voguepay/trunk/woo-voguepay.php
r1987190 r2012439 1 1 <?php 2 2 /** 3 * Plugin Name 3 * Plugin Name 4 4 * 5 5 * @package WooVoguepay … … 10 10 * Plugin URI: https://wordpress.org/plugins/woo-voguepay/ 11 11 * Description: VoguePay plugin for WooCommerce. 12 * Version: 1. 3.012 * Version: 1.4.0 13 13 * Author: kunlexzy 14 14 * Author URI: https://voguepay.com/3445-0056682 … … 22 22 23 23 define( 'VPWOO_VOGUEPAY_BASE', __FILE__ ); 24 define( 'VPWOO_VOGUEPAY_VERSION', '1. 3.0' );24 define( 'VPWOO_VOGUEPAY_VERSION', '1.4.0' ); 25 25 26 26 function vpwoo_voguepay_init() … … 29 29 30 30 require_once dirname( __FILE__ ) . '/includes/class.voguepay.php'; 31 require_once dirname( __FILE__ ) . '/includes/class.extracharge.php'; 32 31 33 32 34 } … … 58 60 59 61 60 function message() {62 function vpwoo_message() { 61 63 62 64 if( get_query_var( 'order-received' ) ){ … … 85 87 86 88 } 87 add_action( 'wp', ' message' );89 add_action( 'wp', 'vpwoo_message' ); 88 90 89 91 /**
Note: See TracChangeset
for help on using the changeset viewer.