Plugin Directory

Changeset 2298639


Ignore:
Timestamp:
05/05/2020 04:07:19 PM (6 years ago)
Author:
paybox
Message:

v0.9.9 Fixing 3x payment not displayed

Location:
paybox-woocommerce-gateway/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • paybox-woocommerce-gateway/trunk/class/wc-paybox-threetime-gateway.php

    r2294678 r2298639  
    2626     * @return bool
    2727     */
    28     public function is_available() {
    29         if (!parent::is_available()) {
    30             return false;
    31         }
    32         $minimal = $this->_config->getAmount();
    33         if (empty($minimal)) {
    34             return true;
    35         }
    36         $total = WC()->cart->total;
    37         $minimal = floatval($minimal);
    38         return $total >= $minimal;
    39     }
    4028
    4129    public function showDetails($order) {
     
    9886}
    9987class WC_Paybox_Threetime_GateWay extends WC_Pbx3xGw{   
    100     public function is_available() {
    101             return false;
    102     }
    10388    public function receipt_page($orderId){
    10489        return;
  • paybox-woocommerce-gateway/trunk/readme.txt

    r2294678 r2298639  
    55Requires at least: 3.0.1
    66Tested up to: 5.3.2
    7 Stable tag: 0.9.8.9
     7Stable tag: 0.9.9
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6868
    6969== Changelog ==
     70= 0.9.9 =
     71Fix 3 times payment not displayed
     72
    7073= 0.9.8.9 =
    7174Added storage of the failed payment details
  • paybox-woocommerce-gateway/trunk/woocommerce-paybox.php

    r2294678 r2298639  
    33 * Plugin Name: WooCommerce Paybox Payment plugin
    44 * Description: Paybox gateway payment plugins for WooCommerce
    5  * Version: 0.9.8.9
     5 * Version: 0.9.9
    66 * Author: Paybox Verifone
    77 * Author URI: http://www.paybox.com
     
    2929
    3030define('WC_PAYBOX_PLUGIN', 'woocommerce-paybox');
    31 define('WC_PAYBOX_VERSION', '0.9.8.9');
     31define('WC_PAYBOX_VERSION', '0.9.9');
    3232define('WC_PAYBOX_KEY_PATH', ABSPATH . '/kek.php');
    3333
Note: See TracChangeset for help on using the changeset viewer.