Plugin Directory

Changeset 3131464


Ignore:
Timestamp:
08/06/2024 09:11:50 AM (19 months ago)
Author:
codebrainbv
Message:
  • Update 1.0.2
Location:
professional-payment-portal-for-woocommerce
Files:
30 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • professional-payment-portal-for-woocommerce/trunk/gateways/abstract.php

    r3131048 r3131464  
    164164        // Order amount in Cents
    165165        $fOrderAmount = $aOrderData['total'];
    166         $fOrderAmountShipping = $aOrderData['shipping_total'];
    167166        $sCurrencyCode = $aOrderData['currency'];
    168167
     
    178177        $aRequest['currency'] = $sCurrencyCode;
    179178        $aRequest['amount'] = $fOrderAmount;
    180         $aRequest['amount_shipping'] = $fOrderAmountShipping;
    181179
    182180        $aRequest['return_url'] = $sReturnUrl;
  • professional-payment-portal-for-woocommerce/trunk/professional-payment-portal-for-woocommerce.php

    r3131048 r3131464  
    1111 * Plugin URI:        https://bitbucket.org/codebrainbv/ppp-woocommerce/
    1212 * Description:       Accept payments through the Professional Payment Portal
    13  * Version:           1.0.1
     13 * Version:           1.0.2
    1414 * Requires at least: 6.4
    15  * Tested up to:      6.4.2
     15 * Tested up to:      6.6.1
    1616 * Requires PHP:      7.4
    17  * WC tested up to:   8.8
     17 * WC tested up to:   9.1.4
    1818 * Author:            CodeBrain BV
    1919 * Author URI:        https://www.codebrain.nl/
     
    103103    include PPP4WOO_ROOT_PATH.'gateways/abstract.php';
    104104    include PPP4WOO_ROOT_PATH.'gateways/ideal.php';
    105     include PPP4WOO_ROOT_PATH.'gateways/ideal_fast.php';
     105    // include PPP4WOO_ROOT_PATH.'gateways/ideal_fast.php';
    106106}
    107107
     
    111111{
    112112    $gateways[] = 'ppp4woo_ideal';
    113     $gateways[] = 'ppp4woo_ideal_fast';
     113    // $gateways[] = 'ppp4woo_ideal_fast';
    114114
    115115    return $gateways;
  • professional-payment-portal-for-woocommerce/trunk/readme.txt

    r3131056 r3131464  
    22Contributors: codebrainbv
    33Tags: professional, rabobank, payment, ideal 2, woocommerce
    4 Requires at least: 5.9
    5 Tested up to: 6.6
    6 Stable tag: 1.0.1
     4Requires at least: 6.4
     5Tested up to: 6.6.1
     6Stable tag: 1.0.2
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    7373== Changelog ==
    7474
     75= 1.0.2 =
     76* Removed fast checkout because it was causing issues for merchants, will reintroduce when fixed.
     77* Fixed issue with the shipping cost
    7578
    7679== Upgrade Notice ==
Note: See TracChangeset for help on using the changeset viewer.