Skip to content

Commit 1333bb2

Browse files
authored
Merge pull request #763 from kprajapatii/master
1.2.19
2 parents 9dfeabd + 95cb978 commit 1333bb2

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://www.ko-fi.com/stiofan
44
Tags: login form, registration, registration form, user profile, user registration, members, membership
55
Requires at least: 4.9
66
Tested up to: 6.6
7-
Stable tag: 1.2.18
7+
Stable tag: 1.2.19
88
License: GPLv3
99
License URI: http://www.gnu.org/licenses/gpl-3.0.html
1010

@@ -146,6 +146,9 @@ Yes, you can customize it with Elementor, but also with Gutenberg, Divi, Beaver
146146

147147
== Changelog ==
148148

149+
= 1.2.19 - 2024-09-06 =
150+
* Theme customize AyeCode UI colors settings not working after update - FIXED
151+
149152
= 1.2.18 - 2024-09-05 =
150153
* PHP 8.2 compatibility changes in Emogrifier class to prevent encoding issues - CHANGED
151154

userswp.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: UsersWP
44
Plugin URI: https://userswp.io/
55
Description: The only lightweight user profile plugin for WordPress. UsersWP features front end user profile, users directory, a registration and a login form.
6-
Version: 1.2.18
6+
Version: 1.2.19
77
Author: AyeCode Ltd
88
Author URI: https://userswp.io
99
License: GPL-2.0+
@@ -24,7 +24,7 @@
2424
}
2525

2626
if ( ! defined( 'USERSWP_VERSION' ) ) {
27-
define( 'USERSWP_VERSION', '1.2.18' );
27+
define( 'USERSWP_VERSION', '1.2.19' );
2828
}
2929

3030
if ( ! defined( 'USERSWP_PATH' ) ) {

vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1138,12 +1138,8 @@ public static function custom_css($compatibility = true) {
11381138
$is_fse = true;
11391139
}
11401140

1141-
$custom_admin = $is_fse ? true : apply_filters('ayecode_ui_custom_admin', false );
1142-
1143-
1144-
if(!empty($colors) && $custom_admin ){
1141+
if(!empty($colors)){
11451142
$d_colors = self::get_colors(true);
1146-
//print_r($d_colors);exit;
11471143

11481144
// $is_fse = !empty($_REQUEST['postType']) && $_REQUEST['postType']=='wp_template';
11491145
foreach($colors as $key => $color ){
@@ -1163,7 +1159,7 @@ public static function custom_css($compatibility = true) {
11631159
echo ' body.modal-open #adminmenuwrap{z-index:999} body.modal-open #wpadminbar{z-index:1025}';
11641160
}
11651161

1166-
if( $aui_bs5 && defined( 'BLOCKSTRAP_VERSION' ) && $custom_admin ){
1162+
if( $aui_bs5 && defined( 'BLOCKSTRAP_VERSION' ) ){
11671163
$css = '';
11681164
$theme_settings = wp_get_global_styles();
11691165

0 commit comments

Comments
 (0)