Skip to content

Commit

Permalink
Release 6.1.1
Browse files Browse the repository at this point in the history
* Fix - Default css class in container
  • Loading branch information
malmo-monei committed Nov 27, 2024
1 parent e7c4d11 commit 1d845b8
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 12 deletions.
6 changes: 3 additions & 3 deletions assets/js/monei-block-checkout-cc.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,21 +318,21 @@
return (
<fieldset className="monei-fieldset monei-card-fieldset wc-block-components-form">
{ moneiData?.description && <p>{ moneiData.description }</p> }
<div className="monei-input-container">
<div className="monei-input-container wc-block-components-text-input">
<input
type="text"
id="cardholder_name"
name="cardholder_name"
placeholder={ __( 'Cardholder Name', 'monei' ) }
required
className="monei-input wc-block-components-text-input"
className="monei-input"
/>
<div
id="monei-cardholder-name-error"
className="wc-block-components-validation-error"
></div>
</div>
<div id="monei-card-input" className="monei-card-input wc-block-components-text-input" />
<div id="monei-card-input" className="monei-card-input" />
<input
type="hidden"
id="monei_payment_token"
Expand Down
2 changes: 1 addition & 1 deletion build/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "monei-woocommerce",
"version": "6.1.0",
"version": "6.1.1",
"main": "index.js",
"repository": "[email protected]:MONEI/MONEI-WooCommerce.git",
"author": "MONEI <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions class-woocommerce-gateway-monei.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @author MONEI
* @category Core
* @package Woocommerce_Gateway_Monei
* @version 6.1.0
* @version 6.1.1
*/
if ( ! class_exists( 'Woocommerce_Gateway_Monei' ) ) :

Expand All @@ -16,7 +16,7 @@ final class Woocommerce_Gateway_Monei {
*
* @var string
*/
public $version = '6.1.0';
public $version = '6.1.1';

/**
* The single instance of the class.
Expand Down
8 changes: 4 additions & 4 deletions includes/payment-methods/class-wc-gateway-monei-cc.php
Original file line number Diff line number Diff line change
Expand Up @@ -287,22 +287,22 @@ protected function render_monei_form() {
?>
<fieldset class="monei-fieldset monei-card-fieldset wc-block-components-form" id="wc-<?php echo esc_attr($this->id); ?>-cc-form">
<!-- Cardholder Name Input -->
<div class="monei-input-container">
<div class="monei-input-container wc-block-components-text-input">
<input
type="text"
id="monei_cardholder_name"
name="monei_cardholder_name"
placeholder="<?php echo __('Cardholder Name', 'monei'); ?>"
required
class="monei-input wc-block-components-text-input">
class="monei-input">
<div
id="monei-cardholder-name-error"
class="wc-block-components-validation-error"
></div>
</div>
<!-- Card Input Container -->
<div id="payment-form" class="monei-input-container">
<div id="monei-card-input" class="monei-card-input wc-block-components-text-input">
<div id="payment-form" class="monei-input-container wc-block-components-text-input">
<div id="monei-card-input" class="monei-card-input">
</div>
<div
id="monei-card-error"
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 @@ Tags: woocommerce, credit card, payment gateway, payments, ecommerce
Contributors: monei, furi3r
Requires at least: 5.0
Tested up to: 6.7
Stable tag: 6.1.0
Stable tag: 6.1.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
WC requires at least: 3.0
Expand Down Expand Up @@ -102,6 +102,9 @@ By using this plugin you agree with MONEI [Terms of Service](https://monei.com/l

== Changelog ==

= 6.1.1 =
* Fix - Default css class in container

= 6.1.0 =
* Add - Multibanco payment method
* Add - MBWay payment method
Expand Down
2 changes: 1 addition & 1 deletion woocommerce-gateway-monei.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Plugin Name: MONEI Payments for WooCommerce
* Plugin URI: https://wordpress.org/plugins/monei/
* Description: Accept Card, Apple Pay, Google Pay, Bizum, PayPal and many more payment methods in your store.
* Version: 6.1.0
* Version: 6.1.1
* Author: MONEI
* Author URI: https://www.monei.com/
* Tested up to: 6.7
Expand Down

0 comments on commit 1d845b8

Please sign in to comment.