Changeset 2484563
- Timestamp:
- 03/02/2021 06:48:28 PM (5 years ago)
- Location:
- helcim-commerce-for-woocommerce/trunk
- Files:
-
- 5 edited
-
assets/js/helcim-scripts.js (modified) (1 diff)
-
class-wc-commerce-helcim.php (modified) (5 diffs)
-
index.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
helcim-commerce-for-woocommerce/trunk/assets/js/helcim-scripts.js
r2124916 r2484563 567 567 else if(document.forms['order_review'] != null){ woocommerceForm = document.forms['order_review']; } 568 568 569 //570 // CHECKING571 //572 573 // CHECK CREATE ACCOUNT574 if(createaccount != null && createaccount.checked == true){575 576 // CLEAR CREDIT CARD DATA577 helcimCleanCardData();578 579 document.getElementById('order_comments').value += "REGISTER";580 return true;581 582 }583 584 569 // CHECK FORM 585 570 if(woocommerceForm == null){ -
helcim-commerce-for-woocommerce/trunk/class-wc-commerce-helcim.php
r2429833 r2484563 11 11 * @class WC_Commerce_Helcim_JS 12 12 * @extends WC_Payment_Gateway 13 * @version 1. 1.1013 * @version 1.2.0 14 14 * @author Helcim Inc. 15 15 */ … … 37 37 $this->commerce_url = 'https://secure.myhelcim.com/api/'; 38 38 $this->helcimjs_url = 'https://secure.myhelcim.com/js/version2.js'; 39 $this->version = '1. 1.10';39 $this->version = '1.2.0'; 40 40 41 41 // LOAD SETTINGS … … 188 188 'type' => 'select', 189 189 'options' => $methods, 190 'description' => __('Choose between using Helcim.js and Direct Integration - <a href="h https://www.helcim.com/support/article/207-cart-software-integration-woocommerce/" target="_blank">Support Page</a>', 'woocommerce'),190 'description' => __('Choose between using Helcim.js and Direct Integration - <a href="https://support.helcim.com/article/helcim-commerce-new-ui-integrations-woocommerce-integration-woocommerce/" target="_blank">Support Page</a>', 'woocommerce'), 191 191 'default' => 'js' 192 192 ); … … 367 367 // CHECK 368 368 if($this->isJS()){ 369 $createAccount = 0; 370 if ($_POST['createaccount']) { 371 $createAccount = (int)$_POST['createaccount']; 372 } 373 374 if ($createAccount == 1) { 375 $helcim_args['updateCustomerCode'] = true; 376 } 369 377 370 378 // CARD INFO … … 466 474 // GET ORDER 467 475 $order = new WC_Order( $order_id ); 468 469 // CHECK IF NOT REGISTERED470 if (substr($order->get_customer_note(),-8) == 'REGISTER'){471 472 // SAVE ORDER AS PENDING473 $order->update_status('pending');474 475 // RETURN476 return array(477 'result' => 'success',478 'redirect' => $this->get_transaction_url( $order )479 );480 481 }482 476 483 477 // BUILD POST DATA -
helcim-commerce-for-woocommerce/trunk/index.php
r2429833 r2484563 4 4 Plugin URI: https://www.helcim.com/ 5 5 Description: Helcim Commerce for WooCommerce 6 Version: 1. 1.106 Version: 1.2.0 7 7 Author: Helcim Inc. 8 8 Author URI: https://www.helcim.com/ -
helcim-commerce-for-woocommerce/trunk/readme.txt
r2429833 r2484563 3 3 Tags: helcim, helcim commerce, woocommerce, woocommerce payments, woocommerce payment gateway, payment gateway, shopping cart, wordpress payment gateway, woocommerce shopping cart, wordpress shopping cart, payment gateway for woocommerce, payments, credit cards, accept credit cards, recurring billing, woocommerce gateway, woocommerce payment plugin, woocommerce credit cards, accept credit cards woocommerce, credit card gateway woocommerce, accept credit cards on woocommerce, process payments, process credit cards, accept visa, accept mastercard,checkout, accept payments, merchant account, merchant services 4 4 Requires at least: 4.7.3 5 Tested up to: 5.6. 05 Tested up to: 5.6.2 6 6 7 7 == Description == … … 19 19 20 20 **REQUIREMENTS:** 21 - WooCommerce 2.6.14 to 4.7.121 - WooCommerce 2.6.14 to 5.0.0 22 22 - [US Merchant Account Sign Up](https://admin.helcim.com/signup/ "Unlock Payment Gateway") 23 23 … … 72 72 73 73 == Changelog == 74 75 = 1.2.0 = 76 * Optimized Plugin 77 * Updated plugin to work with Create an Account on Checkout 78 * Tested upto woocommerce v5.0.0 74 79 75 80 = 1.1.10 = -
helcim-commerce-for-woocommerce/trunk/uninstall.php
r2429833 r2484563 5 5 * Uninstalls Helcim Gateway. 6 6 * 7 * @version 1. 1.107 * @version 1.2.0 8 8 * @author Helcim Inc. 9 9 */
Note: See TracChangeset
for help on using the changeset viewer.