Plugin Directory

Changeset 1933369


Ignore:
Timestamp:
08/30/2018 07:28:58 PM (8 years ago)
Author:
cardinalmarketing
Message:

Change JavaScript URL for staging and production

Location:
cardinalcommerce-oneconnect
Files:
7 added
3 edited

Legend:

Unmodified
Added
Removed
  • cardinalcommerce-oneconnect/trunk/Gateway.php

    r1914198 r1933369  
    3535
    3636    private function register_scripts() {
    37         $songbird_domain = 'songbirdstag.cardinalcommerce.com';
    38         if ($this->get_option('environment') == 'PROD') {
    39             $songbird_domain = 'songbird.cardinalcommerce.com';
     37        $songbird_domain = 'songbird.cardinalcommerce.com';
     38        if ($this->get_option('environment') == 'STAG') {
     39            $songbird_domain = 'songbirdstag.cardinalcommerce.com';
    4040        }
    4141        wp_register_script(
     
    500500                "BillingCountryCode" => $order->get_billing_country(),
    501501                "BillingPhone" => $order->get_billing_phone(),
     502                "ShippingFirstName" => $order->get_shipping_first_name(),
     503                "ShippingLastName" => $order->get_shipping_last_name(),
    502504                "ShippingAddress1" => $order->get_shipping_address_1(),
    503505                "ShippingAddress2" => $order->get_shipping_address_2(),
  • cardinalcommerce-oneconnect/trunk/README.txt

    r1918275 r1933369  
    44Requires at least: 4.6
    55Tested up to: 4.7.5
    6 Stable tag: 1.2.6
     6Stable tag: 1.2.7
    77License: GPLv3 or later
    88LicenseURI: http://www.gnu.org/licenses/gpl-3.0.html
     
    5555== Changelog ==
    5656
     57= 2018.08.01 - Version 1.2.7 =
     58 * Change JavaScript URL for staging and production
     59
    5760= 2018.08.01 - Version 1.2.6 =
    5861 * Fix shipping name
  • cardinalcommerce-oneconnect/trunk/cardinalcommerce-oneconnect.php

    r1918275 r1933369  
    55 * Plugin URI:   https://developer.cardinalcommerce.com/
    66 * Description:  Module for processing payments with CardinalCommerce and optional Cardinal Consumer Authentication (CCA)
    7  * Version:      1.2.6
     7 * Version:      1.2.7
    88 * Author:       CardinalCommerce
    99 * Author URI:   https://cardinalcommerce.com/
     
    1616}
    1717
    18 define( 'CARDINAL_ONECONNECT_VERSION', '1.2.6' );
     18define( 'CARDINAL_ONECONNECT_VERSION', '1.2.7' );
    1919define( 'CARDINAL_ONECONNECT_PLUGIN_FILE', __FILE__ );
    2020
Note: See TracChangeset for help on using the changeset viewer.