Plugin Directory

Changeset 1760391


Ignore:
Timestamp:
11/07/2017 09:44:18 PM (8 years ago)
Author:
cardinalmarketing
Message:

Version 1.1.0

Location:
cardinalcommerce-oneconnect/trunk
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • cardinalcommerce-oneconnect/trunk/README.txt

    r1755486 r1760391  
    4343Call 877-352-8444 for more information or use the [credentials form](http://info.cardinalcommerce.com/credentials-woocommerce)
    4444
    45 [CardinalCommerce Web Site](https://www.cardinalcommerce.com) 
     45[CardinalCommerce Web Site](https://www.cardinalcommerce.com)
    4646
    47 <h3>Why do WordPress (WooCommerce) merchants use 3-D Secure?</h3> 
    48 3-D Secure is an authentication initiative by the card networks to cut fraud out of the online payment system like chip cards reduce fraud at the physical register. The goal is to improve online transaction performance and accelerate eCommerce growth. Merchant benefits of using 3-D Secure include reducing fraud, increasing authorization rates, and reduce fees associated with the card networks. 
     47<h3>Why do WordPress (WooCommerce) merchants use 3-D Secure?</h3>
     483-D Secure is an authentication initiative by the card networks to cut fraud out of the online payment system like chip cards reduce fraud at the physical register. The goal is to improve online transaction performance and accelerate eCommerce growth. Merchant benefits of using 3-D Secure include reducing fraud, increasing authorization rates, and reduce fees associated with the card networks.
    4949<h3>What is Consumer Authentication?</h3> Cardinal Consumer Authentication is a patented rules-based solution that incorporates 3-D Secure. Online transactions are authenticated with the consumer's card issuing bank. The bank determines fraud risk and takes on liability when they authenticate a transaction, saving the merchant from chargebacks. The merchant is given options on the experiences the consumer sees on their checkout page.
    5050<h3>Why is consumer authentication important now?</h3>
     
    6363
    6464Cardinal can take the worry and work out of accepting credit cards online. Learn how fraud impacts your webstore. Find out why it is important to have a solution in place to [combat fraud](http://info.cardinalcommerce.com/card-present-card-not-present).
    65 Don't forget to checkout [our blog](http://payments.cardinalcommerce.com/) to learn all the latest in the payments space. 
     65Don't forget to checkout [our blog](http://payments.cardinalcommerce.com/) to learn all the latest in the payments space.
    6666
    6767
     
    7777
    7878== Frequently Asked Questions ==
    79 = How do I get my Cardinal credentials? = 
     79= How do I get my Cardinal credentials? =
    8080CardinalCommerce provides those over the phone or via email once you have the plugin installed. Call us at 877-352-8444 or email info@cardinalcommerce.com
    8181= Is there a cost to use the plugin? =
     
    9292== Changelog ==
    9393
    94 = 1.0 =
    95 * First Version
     94= 2017.11.07 - Version 1.1.0 =
     95 * Added Enable / Disable gateway functionality in settings
     96 * Add payment brand logos to payment gateway
     97 * Fixed jQuery reload bug, ensuring plugin functionality even if jQuery is loaded twice
    9698
     99= 2017.04.12 - Version 1.0 =
     100 * First release
  • cardinalcommerce-oneconnect/trunk/changelog.txt

    r1753370 r1760391  
     1*** CardinalCommerce OneConnect 3D-Secure for Authorize.net Changelog ***
     2
     32017.11.07 - version 1.1.0
     4 * Added Enable / Disable gateway functionality in settings
     5 * Add payment brand logos to payment gateway
     6 * Fixed jQuery reload bug, ensuring plugin functionality even if jQuery is loaded twice
     7
     82017.04.12 - version 1.0
     9 * First release
  • cardinalcommerce-oneconnect/trunk/includes/abstracts/abstract-wc-gateway-cardinalpm.php

    r1753370 r1760391  
    123123    }
    124124
     125    // Payment form
     126
    125127    /**
    126128    * Get gateway icon.
     
    136138        return apply_filters( 'woocommerce_gateway_icon', $icon_html, $this->id );
    137139    }
     140
     141    /**
     142     * Define payment fields
     143     */
     144  // public function payment_fields() {
     145            // $this->get_payment_form()->render();
     146    // }
     147
     148  /**
     149   * Get the payment form class
     150   */
     151  // public function get_payment_form() {
     152    // return new WC_Gateway_CardinalPM_Payment_Form( $this );
     153  // }
    138154
    139155    /**
  • cardinalcommerce-oneconnect/trunk/php-src/CardinalCommerce/Payments/Carts/WooCommerce/Settings/AdminSettings.php

    r1683585 r1760391  
    1111
    1212    private function getEnvironmentOptions() {
    13         $environmentConfigs = \wc_gateway_cardinalpm()->objects()->environments();       
     13        $environmentConfigs = \wc_gateway_cardinalpm()->objects()->environments();
    1414        $keys = $environmentConfigs->getKeys();
    1515
     
    7272    public function form_fields() {
    7373        $mainOptions = array(
     74
     75            'enabled' => array(
     76                'title'   => esc_html__( 'Enable / Disable', 'woocommerce-plugin-framework' ),
     77                'label'   => esc_html__( 'Enable this gateway', 'woocommerce-plugin-framework' ),
     78                'type'    => 'checkbox',
     79                'default' => 'yes',
     80            ),
     81
    7482            'ccaEnabled' => array(
    75                 'title' => __('Enable/Disable', 'woocommerce'),
     83                'title' => __('Enable / Disable CCA', 'woocommerce'),
    7684                'label' => __('Enable Cardinal Consumer Authentication', 'wc-cardinalprocessormodule'),
    7785                'type' => 'checkbox',
Note: See TracChangeset for help on using the changeset viewer.