Plugin Directory

Changeset 2775711


Ignore:
Timestamp:
08/25/2022 04:59:35 PM (4 years ago)
Author:
usedrip
Message:

Update v1.4.6

  • not update order status with new webhook calls
Location:
drip-payments/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • drip-payments/trunk/drip-payments.php

    r2766893 r2775711  
    44 * Description: Forneça a Drip como opção de pagamento para pedidos do WooCommerce.
    55 * Author: Drip
    6  * Version: 1.4.5
     6 * Version: 1.4.6
    77 */
    88//ini_set('display_errors', '1');
     
    381381                }
    382382
     383                if ($order->is_paid()) {
     384                    wp_redirect($this->get_return_url($order));
     385                    exit;
     386                }
     387
    383388                if ($checkout->status === 'OK') {
    384389                    self::log("Order #{$order_id} approved. (Drip Checkout #{$checkout_id}).");
  • drip-payments/trunk/readme.txt

    r2766893 r2775711  
    55Tested up to: 6.0
    66Requires PHP: 7.0
    7 Stable tag: 1.4.5
     7Stable tag: 1.4.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • drip-payments/trunk/src/DripUtils.php

    r2766893 r2775711  
    1111    const DRIP_PAYMENTS_BASE_URI_PRODUCTION = 'https://drip-be.usedrip.com.br/api/';
    1212
    13     const DRIP_PAYMENTS_ACTUAL_PLUGIN_VERSION = '1.4.5';
     13    const DRIP_PAYMENTS_ACTUAL_PLUGIN_VERSION = '1.4.6';
    1414}
    1515
Note: See TracChangeset for help on using the changeset viewer.