diff --git a/includes/gateways/Ideal.php b/includes/gateways/Ideal.php index 0e7b15f..53c6dfb 100644 --- a/includes/gateways/Ideal.php +++ b/includes/gateways/Ideal.php @@ -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; @@ -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', @@ -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' ), diff --git a/readme.txt b/readme.txt index 68caac5..53b7e67 100755 --- a/readme.txt +++ b/readme.txt @@ -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 @@ -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 diff --git a/unzer-payments.php b/unzer-payments.php index 3a9df8f..de1dc7f 100755 --- a/unzer-payments.php +++ b/unzer-payments.php @@ -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 @@ -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__ . '/' );