Plugin Directory

Changeset 3272080


Ignore:
Timestamp:
04/14/2025 07:34:41 AM (12 months ago)
Author:
iCount
Message:

iCount v2.0.5 Added payment page customer details fix

Location:
icount
Files:
87 added
3 edited

Legend:

Unmodified
Added
Removed
  • icount/trunk/icount-payment-gateway.php

    r3262061 r3272080  
    66 * Plugin Name: iCount Payment Gateway
    77 * Description: WooCommerce integration for iCount Payment Gateway.
    8  * Version: 2.0.4
     8 * Version: 2.0.5
    99 * RequiresPHP: 7.4
    1010 * Author: iCount Systems
  • icount/trunk/includes/WC_ICount_Gateway.php

    r3262061 r3272080  
    318318                                    'first_name' => $order->get_billing_first_name(),
    319319                                    'last_name' => $order->get_billing_last_name(),
     320                                    'country_code' => $order->get_billing_country(),   
     321    'city'         => $order->get_billing_city(),
     322    'zip'          => $order->get_billing_postcode(),
     323    'street'       => $order->get_billing_address_1(),
     324    'street_num'   => $order->get_billing_address_2(),
    320325                                    'email' => $order->get_billing_email(),
    321326                                    'phone' => $order->get_billing_phone(),
     
    994999                                    'phone' => $order->get_billing_phone(),
    9951000                                        'recipient_name'   => trim($order->get_shipping_first_name() . ' ' . $order->get_shipping_last_name()),
    996     'recipient_email'  => $order->get_billing_email(),
     1001    'country_code' => $order->get_billing_country(),   
     1002    'city'         => $order->get_billing_city(),
     1003    'zip'          => $order->get_billing_postcode(),
     1004    'street'       => $order->get_billing_address_1(),
     1005    'street_num'   => $order->get_billing_address_2(),
     1006
     1007                                'recipient_email'  => $order->get_billing_email(),
    9971008    'recipient_phone'  => $order->get_billing_phone(),
    9981009    'recipient_city'   => $order->get_shipping_city(),
  • icount/trunk/readme.txt

    r3262061 r3272080  
    44Requires at least: 5.0
    55Tested up to: 6.7.1
    6 Stable tag: 2.0.4
     6Stable tag: 2.0.5
    77Requires PHP: 7.4
    88License: GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.