Plugin Directory

Changeset 2711917


Ignore:
Timestamp:
04/20/2022 06:00:38 AM (4 years ago)
Author:
avify
Message:

Update to version 1.0.9 from GitHub

Location:
avify-payments-for-woocommerce
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • avify-payments-for-woocommerce/tags/1.0.9/avify-payments-initializer.php

    r2710316 r2711917  
    77 * Plugin URI:
    88 * Description: Accept card payments in WooCommerce through Avify Payments.
    9  * Version: 1.0.8
     9 * Version: 1.0.9
    1010 * Author: Avify
    1111 * Author URI: https://avify.com/
  • avify-payments-for-woocommerce/tags/1.0.9/avify-payments-shipping.php

    r2710316 r2711917  
    317317                            if ($avifyRate['available']) {
    318318                                avify_log("{$avifyRate['carrier_code']}_{$avifyRate['method_code']} : {$avifyRate['amount']}");
     319                                $title = explode('|', $avifyRate['carrier_title']);
     320                                $title = $title[0];
    319321                                $rates[] = [
    320322                                    "id" => "avfdeliveries-{$avifyRate['carrier_code']}{$avifyRate['method_code']}",
    321                                     "label" => $avifyRate['method_title'],
     323                                    "label" => $title . ' - ' . $avifyRate['method_title'],
    322324                                    "cost" => $avifyRate['amount'],
    323325                                    "package" => $package,
  • avify-payments-for-woocommerce/tags/1.0.9/readme.txt

    r2710316 r2711917  
    44Requires at least: 5.6
    55Tested up to: 5.9
    6 Stable tag: 1.0.8
     6Stable tag: 1.0.9
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    5757== Changelog ==
    5858
     59= 1.0.9 =
     60* Carrier title.
     61
    5962= 1.0.8 =
    6063* Avify PHPSESSID.
  • avify-payments-for-woocommerce/trunk/avify-payments-initializer.php

    r2710316 r2711917  
    77 * Plugin URI:
    88 * Description: Accept card payments in WooCommerce through Avify Payments.
    9  * Version: 1.0.8
     9 * Version: 1.0.9
    1010 * Author: Avify
    1111 * Author URI: https://avify.com/
  • avify-payments-for-woocommerce/trunk/avify-payments-shipping.php

    r2710316 r2711917  
    317317                            if ($avifyRate['available']) {
    318318                                avify_log("{$avifyRate['carrier_code']}_{$avifyRate['method_code']} : {$avifyRate['amount']}");
     319                                $title = explode('|', $avifyRate['carrier_title']);
     320                                $title = $title[0];
    319321                                $rates[] = [
    320322                                    "id" => "avfdeliveries-{$avifyRate['carrier_code']}{$avifyRate['method_code']}",
    321                                     "label" => $avifyRate['method_title'],
     323                                    "label" => $title . ' - ' . $avifyRate['method_title'],
    322324                                    "cost" => $avifyRate['amount'],
    323325                                    "package" => $package,
  • avify-payments-for-woocommerce/trunk/readme.txt

    r2710316 r2711917  
    44Requires at least: 5.6
    55Tested up to: 5.9
    6 Stable tag: 1.0.8
     6Stable tag: 1.0.9
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    5757== Changelog ==
    5858
     59= 1.0.9 =
     60* Carrier title.
     61
    5962= 1.0.8 =
    6063* Avify PHPSESSID.
Note: See TracChangeset for help on using the changeset viewer.