Skip to content

Commit

Permalink
Merge pull request globalpayments#18 from apetrovici/feature/globalpa…
Browse files Browse the repository at this point in the history
…yments-woocommerce

TR-51: [WooCommerce]: bug fix hosted fields not loading
  • Loading branch information
securesubmit-buildmaster authored Feb 15, 2022
2 parents c8c1330 + af20c3e commit a2730d9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion globalpayments-gateway-provider-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: GlobalPayments WooCommerce
* Plugin URI: https://github.com/globalpayments/globalpayments-woocommerce
* Description: This extension allows WooCommerce to use the available Global Payments payment gateways. All card data is tokenized using the respective gateway's tokenization service.
* Version: 1.1.3
* Version: 1.1.4
* Requires PHP: 5.5.9
* WC tested up to: 5.6.0
* Author: Global Payments
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: globalpayments
Tags: woocommerce, woo, unified, commerce, platform, global, payments, ucp, heartland, payment, systems, tsys, genius, 3DS, gateway, token, tokenize, save cards
Requires at least: 5.4
Tested up to: 5.8
Stable tag: 1.1.3
Stable tag: 1.1.4
License: MIT
License URI: https://github.com/globalpayments/globalpayments-woocommerce/blob/main/LICENSE

Expand Down Expand Up @@ -45,7 +45,10 @@ Access to our Unified Commerce Platform (UCP) requires sandbox credentials which

== Changelog ==

= 1.1.3=
= 1.1.4 =
* Add dependency for WC checkout frontend scripts.

= 1.1.3 =
* Added composer
* Bug fix - globalpayments_gpapi-checkout_validated displayed although it should be hidden

Expand Down
2 changes: 1 addition & 1 deletion src/Gateways/AbstractGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ public function tokenization_script() {
wp_enqueue_script(
'globalpayments-secure-payment-fields',
Plugin::get_url( '/assets/frontend/js/globalpayments-secure-payment-fields.js' ),
array( 'globalpayments-secure-payment-fields-lib', 'jquery' ),
array( 'globalpayments-secure-payment-fields-lib', 'wc-checkout' ),
WC()->version,
true
);
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Plugin {
*
* @var string
*/
const VERSION = '1.1.3';
const VERSION = '1.1.4';

/**
* Init the package.
Expand Down

0 comments on commit a2730d9

Please sign in to comment.