Skip to content

Commit

Permalink
v1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dimosKougiou committed Oct 16, 2024
1 parent 0da262a commit f4e3fd0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
## Changelog

- **1.0.8**
- Added support for IRIS payment.
- Added support for IRIS payments with Nexi Checkout acquirer.
- **1.0.7**
- Added support for block-based checkout.
- **1.0.6**
Expand Down Expand Up @@ -49,7 +49,8 @@ Once you have completed the requested tests and any changes to your website, you
6. Redirection option: user should have a checkbox to enable pop up with i-frame without redirection.
7. A text field for providing the absolute or relative (to Cardlink Payment Gateway location on server) url of custom CSS stylesheet, to change css styles in payment page.
8. Translation ready for Greek & English languages.

9. IRIS payments for Nexi acquirer only. Uppon installation, an extra payment is created. This payment can only be activated if Nexi is selected in the Cardlink payment method.
10. Not supporting iframe. The IRIS payments does not support the iframe feature.

## Installation

Expand All @@ -71,6 +72,11 @@ Here are the detailed instructions to manually install a WordPress plugin by tra
![image001](https://developer.cardlink.gr/downloads/cardlink-payment-gateway-woocommerce-assets/image001.jpg)
2. This is the front-end of Cardlink Payment Gateway plugin located in checkout page.
![image002](https://developer.cardlink.gr/downloads/cardlink-payment-gateway-woocommerce-assets/image002.jpg)
3. The IRIS Payment method settings screen used to configure the gateway. Supported if the selected acquired is Nexi Checkout from Cardlink Payment Gateway settings screen.
![image003](https://developer.cardlink.gr/downloads/cardlink-payment-gateway-woocommerce-assets/image003.jpg)
To use IRIS, start by selecting Nexi Checkout as the acquirer from the Cardlink
Payment Gateway options screen. Then, navigate to the IRIS gateway settings screen
and enter your IRIS customer code.

## Support tickets

Expand Down
5 changes: 4 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ Once you have completed the requested tests and any changes to your website, you
6. Redirection option: user should have a checkbox to enable pop up with i-frame without redirection.
7. A text field for providing the absolute or relative (to Cardlink Payment Gateway location on server) url of custom CSS stylesheet, to change css styles in payment page.
8. Translation ready for Greek & English languages.
9. IRIS payments for Nexi acquirer only. Uppon installation, an extra payment is created. This payment can only be activated if Nexi is selected in the Cardlink payment method.
10. Not supporting iframe. The IRIS payments does not support the iframe feature.

== Installation ==

Expand All @@ -45,11 +47,12 @@ Here are the detailed instructions to manually install a WordPress plugin by tra

1. The Cardlink Payment Gateway settings screen used to configure the main Cardlink gateway.
2. This is the front-end of Cardlink Payment Gateway plugin located in checkout page.
3. The IRIS Payment method settings screen used to configure the gateway. Supported if the selected acquired is Nexi Checkout from Cardlink Payment Gateway settings screen.

== Changelog ==

= 1.0.8 =
* Added support for IRIS payments.
* Added support for IRIS payments with Nexi Checkout acquirer.
= 1.0.7 =
* Added support for block-based checkout.
= 1.0.6 =
Expand Down
6 changes: 3 additions & 3 deletions includes/class-cardlink-payment-gateway-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,7 @@ public function init_form_fields() {
'enabled' => array(
'title' => __( 'Enable/Disable', 'cardlink-payment-gateway' ),
'type' => 'checkbox',
'label' => __( 'Enable Cardlink Payment Gateway', 'cardlink-payment-gateway' ),
'label' => __( 'Enable IRIS Payment Gateway', 'cardlink-payment-gateway' ),
'description' => __( 'Enable or disable the gateway.', 'cardlink-payment-gateway' ),
'desc_tip' => true,
'default' => 'yes'
Expand All @@ -1122,14 +1122,14 @@ public function init_form_fields() {
'type' => 'text',
'description' => __( 'This controls the title which the user sees during checkout.', 'cardlink-payment-gateway' ),
'desc_tip' => true,
'default' => __( 'Credit card via Cardlink', 'cardlink-payment-gateway' )
'default' => __( 'Credit card via IRIS', 'cardlink-payment-gateway' )
),
'description' => array(
'title' => __( 'Description', 'cardlink-payment-gateway' ),
'type' => 'textarea',
'description' => __( 'This controls the description which the user sees during checkout.', 'cardlink-payment-gateway' ),
'desc_tip' => true,
'default' => __( 'Pay Via Cardlink: Accepts Visa, Mastercard, Maestro, American Express, Diners, Discover.', 'cardlink-payment-gateway' )
'default' => ''
),
'iris_customer_code'=> array(
'title' => __( 'IRIS customer code', 'cardlink-payment-gateway' ),
Expand Down

0 comments on commit f4e3fd0

Please sign in to comment.