From 16eae323cbcb2b76a2ac7765391eff08720010cc Mon Sep 17 00:00:00 2001 From: Eclipse Srl Date: Tue, 5 Nov 2019 18:47:41 +0100 Subject: [PATCH] fixed ajax css wc --- README.txt | 5 ++++- assets/css/ajax-loading.css | 2 +- udesly-adapter-plugin.php | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.txt b/README.txt index 92705fc..d96b746 100644 --- a/README.txt +++ b/README.txt @@ -4,7 +4,7 @@ Donate link: https://www.udesly.com/ Tags: webflow to wordpress, editor, page builder, layout design, udesly, webflow Requires at least: 5.0 Tested up to: 5.2.3 -Stable tag: 2.0.0.37 +Stable tag: 2.0.0.38 License: GPLv3 or later License URI: https://www.udesly.com/terms-conditions-of-use/#udesly-wordpress-plugin Requires PHP: 5.6.0 @@ -81,6 +81,9 @@ That's all! Absolutely! You can use the Udesly Adapter to create more than one website. == Changelog == += 2.0.0.38 = +* Fixed wrong css for checkout notifications + = 2.0.0.37 = * Fixed password protected archive page bug diff --git a/assets/css/ajax-loading.css b/assets/css/ajax-loading.css index b54b5b8..f5cdb42 100644 --- a/assets/css/ajax-loading.css +++ b/assets/css/ajax-loading.css @@ -15,7 +15,7 @@ transition: opacity 1s linear; } -.udy-wc-notices-wrapper.is-ajax { +.udy-wc-notices-wrapper.is-ajax, .udy-wc-notices-wrapper.is-ajaxnotices-parent { opacity: 1; transition: opacity 1s linear; } diff --git a/udesly-adapter-plugin.php b/udesly-adapter-plugin.php index ea5c695..0c8219b 100644 --- a/udesly-adapter-plugin.php +++ b/udesly-adapter-plugin.php @@ -11,7 +11,7 @@ * Plugin Name: Udesly Adapter * Plugin URI: https://www.udesly.com * Description: This is a support plugin for Udesly (Webflow to WordPress converter) that allows you to enable additional features for your theme. - * Version: 2.0.0.37 + * Version: 2.0.0.38 * Author: Udesly * Author URI: https://www.udesly.com * License: GPL-2.0+ @@ -29,7 +29,7 @@ // Constants defined('UDESLY_ADAPTER_PLUGIN_DIRECTORY_PATH') ?: define('UDESLY_ADAPTER_PLUGIN_DIRECTORY_PATH', plugin_dir_path(__FILE__)); defined('UDESLY_ADAPTER_PLUGIN_DIRECTORY_URL') ?: define('UDESLY_ADAPTER_PLUGIN_DIRECTORY_URL', plugin_dir_url(__FILE__)); -defined('UDESLY_ADAPTER_VERSION') ?: define('UDESLY_ADAPTER_VERSION', "2.0.0.37"); +defined('UDESLY_ADAPTER_VERSION') ?: define('UDESLY_ADAPTER_VERSION', "2.0.0.38"); defined('UDESLY_TEXT_DOMAIN') ?: define('UDESLY_TEXT_DOMAIN', "udesly-adapter-plugin"); defined('UDESLY_ADAPTER_PLUGIN_MISC_PATH') ?: define('UDESLY_ADAPTER_PLUGIN_MISC_PATH', plugin_dir_path(__FILE__) . 'includes/misc/');