Plugin Directory

Changeset 2596550


Ignore:
Timestamp:
09/09/2021 11:58:40 PM (4 years ago)
Author:
Helcim
Message:
  • Added Refund Capability
  • bug fixes
  • Tested upto WordPress 5.8
  • Tested upto woocommerce v5.6
Location:
helcim-commerce-for-woocommerce/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • helcim-commerce-for-woocommerce/trunk/WCHelcimGateway.php

    r2596495 r2596550  
    1919 * @class        WCHelcimGateway
    2020 * @extends    WC_Payment_Gateway
    21  * @version    2.0.1
     21 * @version    2.0.2
    2222 * @author        Helcim Inc.
    2323 */
     
    2525{
    2626    private const PLUGIN_NAME = 'woocommerce';
    27     private const VERSION = '2.0.1';
     27    private const VERSION = '2.0.2';
    2828    private const HELCIM_JS_FILE = 'https://secure.myhelcim.com/js/version2.js';
    2929    private const GOOGLE_RECAPTCHA_URL = 'https://www.google.com/recaptcha/api.js';
  • helcim-commerce-for-woocommerce/trunk/classes/HelcimLineItemService.php

    r2596407 r2596550  
    1616                ->setDescription($product->get_name(''))
    1717                ->setQuantity($item['quantity'] ?? 0)
    18                 ->setPrice($product->get_sale_price())
     18                ->setPrice((float)$product->get_sale_price())
    1919                ->setTotal($item['line_subtotal'] ?? 0);
    2020        }
  • helcim-commerce-for-woocommerce/trunk/index.php

    r2596495 r2596550  
    44Plugin URI: https://www.helcim.com/
    55Description: Helcim Commerce for WooCommerce
    6 Version: 2.0.1
     6Version: 2.0.2
    77Author: Helcim Inc.
    88Author URI: https://www.helcim.com/
  • helcim-commerce-for-woocommerce/trunk/readme.txt

    r2596495 r2596550  
    2525== Installation ==
    2626
    27 1. For detailed instructions, please visit: https://www.helcim.com/support/article/207-cart-software-integration-woocommerce/
     271. For detailed instructions, please visit: https://support.helcim.com/article/helcim-commerce-new-ui-integrations-woocommerce-integration-woocommerce/
    28282. Install the plugin, or download it and extract it to: /wp-contents/plugins/ directory
    29293. Configure the module in WooCommerce->Settings->Check Out then click 'Helcim'
     
    7575= 2.0.1 =
    7676* Added Refund Capability
     77* bug fixes
     78* Tested upto WordPress 5.8
     79* Tested upto woocommerce v5.6
     80
     81= 2.0.1 =
     82* Added Refund Capability
    7783* Tested upto WordPress 5.8
    7884* Tested upto woocommerce v5.6
  • helcim-commerce-for-woocommerce/trunk/uninstall.php

    r2596495 r2596550  
    55 * Uninstalls Helcim Gateway.
    66 *
    7  * @version    2.0.1
     7 * @version    2.0.2
    88 * @author        Helcim Inc.
    99 */
Note: See TracChangeset for help on using the changeset viewer.