Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions includes/gateways/Ideal.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ class Ideal extends AbstractGateway {
public $paymentTypeResource = \UnzerSDK\Resources\PaymentTypes\Ideal::class;
public $allowedCountries = array( 'NL' );
public $allowedCurrencies = array( 'EUR' );
public $method_title = 'Unzer iDEAL';
public $method_title = 'Unzer iDEAL | Wero';
public $method_description;
public $title = 'iDEAL';
public $title = 'iDEAL | Wero';
public $description = '';
public $id = self::GATEWAY_ID;
public $plugin_id;
Expand All @@ -34,7 +34,7 @@ public function get_form_fields() {

'enabled' => array(
'title' => __( 'Enable/Disable', 'unzer-payments' ),
'label' => __( 'Enable Unzer iDEAL', 'unzer-payments' ),
'label' => __( 'Enable Unzer iDEAL | Wero', 'unzer-payments' ),
'type' => 'checkbox',
'description' => '',
'default' => 'no',
Expand All @@ -43,7 +43,7 @@ public function get_form_fields() {
'title' => __( 'Title', 'unzer-payments' ),
'type' => 'text',
'description' => __( 'This controls the title which the user sees during checkout.', 'unzer-payments' ),
'default' => __( 'iDEAL', 'unzer-payments' ),
'default' => __( 'iDEAL | wero', 'unzer-payments' ),
),
'description' => array(
'title' => __( 'Description', 'unzer-payments' ),
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: Unzer
Tags: payments, woocommerce
Requires at least: 4.5
Tested up to: 6.9
Stable tag: 2.1.0
Stable tag: 2.1.1
License: Apache-2.0
License URI: http://www.apache.org/licenses/LICENSE-2.0
Author URI: https://unzer.com
Expand Down Expand Up @@ -59,6 +59,9 @@ Unzer is one of the leading payment companies in Europe. Over 70,000 retailers t

## Changelog ##

# 2.1.1 #
* Updated iDEAL Payment naming and logo

# 2.1.0 #
### This is a major release - remember to test and create backup before updating your LIVE environment.
* New: Block code is now fully supported
Expand Down
4 changes: 2 additions & 2 deletions unzer-payments.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Official Unzer Plugin
* Author: Unzer
* Author URI: https://www.unzer.com
* Version: 2.1.0
* Version: 2.1.1
* License: Apache-2.0
* Requires at least: 4.5
* Tested up to: 6.9
Expand All @@ -21,7 +21,7 @@
/**
* Required minimums and constants
*/
define( 'UNZER_VERSION', '2.1.0' );
define( 'UNZER_VERSION', '2.1.1' );
define( 'UNZER_PLUGIN_TYPE_STRING', 'Unzer Payments' );
define( 'UNZER_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
define( 'UNZER_PLUGIN_PATH', __DIR__ . '/' );
Expand Down
Loading