Skip to content

Commit

Permalink
v6.0.4 : Remove confusing circle around today's date in a book process
Browse files Browse the repository at this point in the history
  • Loading branch information
Ugoku committed Jan 16, 2024
1 parent 8cf87ab commit 9f3366c
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 6 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 6.0.4 (2024-01-16)
* Remove confusing circle around today's date in a book process

## 6.0.3 (2023-12-21)
* Fix checkbox without explanation when adding book process shortcode

Expand Down
3 changes: 3 additions & 0 deletions css/themes/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
.bookprocess .react-datepicker__navigation {
display: flex; /* Fix Elementor overriding this to block */
}
.bookprocess .react-datepicker__day--today::after {
content: unset; /* Circle around today is confusing, people might think that day is selected */
}

/*** ONLINE BOOKING ***/
.recras-contactform-required::after {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "recras-wordpress-plugin",
"version": "6.0.3",
"version": "6.0.4",
"description": "Recras WordPress plugin",
"main": "index.js",
"directories": {
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: zanderz
Tags: recras, recreation, reservation, booking, voucher
Tested up to: 6.4
Stable tag: 6.0.3
Stable tag: 6.0.4
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -80,6 +80,9 @@ No. "Must use" plugins don't appear in the update notifications nor show their u

== Changelog ==

= 6.0.4 =
* Remove confusing circle around today's date in a book process

= 6.0.3 =
* Fix checkbox without explanation when adding book process shortcode

Expand Down
2 changes: 1 addition & 1 deletion recras-wordpress-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
Plugin Name: Recras WordPress Plugin
Plugin URI: https://www.recras.nl/
Version: 6.0.3
Version: 6.0.4
Description: Easily integrate your Recras data into your own site
Requires at least: 6.2
Requires PHP: 7.2.0
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ public function loadScripts(): void
'https://' . $subdomain . '.recras.nl/bookprocess/bookprocess_styling.css'
);

wp_enqueue_style('recras_theme_base', $this->baseUrl . '/css/themes/base.css', [], '5.5.1');
wp_enqueue_style('recras_theme_base', $this->baseUrl . '/css/themes/base.css', [], '6.0.4');
wp_enqueue_style('recras_theme_' . $theme, $this->baseUrl . '/css/themes/' . $theme . '.css', [], $allowedThemes[$theme]['version']);
}
}
Expand Down

0 comments on commit 9f3366c

Please sign in to comment.