diff --git a/geodirectory.php b/geodirectory.php index 44f9fed1..34999cbd 100644 --- a/geodirectory.php +++ b/geodirectory.php @@ -11,7 +11,7 @@ * Plugin Name: GeoDirectory * Plugin URI: https://wpgeodirectory.com/ * Description: GeoDirectory - Business Directory Plugin for WordPress. - * Version: 2.3.76 + * Version: 2.3.77 * Author: AyeCode - WP Business Directory Plugins * Author URI: https://wpgeodirectory.com * Text Domain: geodirectory @@ -34,7 +34,7 @@ final class GeoDirectory { * * @var string */ - public $version = '2.3.76'; + public $version = '2.3.77'; /** * GeoDirectory instance. diff --git a/readme.txt b/readme.txt index 2ecbe259..3b3d5faf 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://wpgeodirectory.com Tags: business directory, listings, directory plugin, classifieds, directory Requires at least: 4.5 Tested up to: 6.6 -Stable tag: 2.3.76 +Stable tag: 2.3.77 Requires PHP: 5.6 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -319,6 +319,9 @@ We don't offer free trials, but we have a 30-day money-back guarantee if you are __WARNING: GDv2 is a significant update over GDv1 and may require manual work, such as adding widgets to sidebars to recreate your current layout. As always, we recommend trying this on a staging site first. [Learn more](https://docs.wpgeodirectory.com/article/260-upgrading-from-gdv1-to-gdv2)__ += GeoDirectory v2.3.77 - 2024-09-06 = +* Theme customize AyeCode UI colors settings not working after update - FIXED + = GeoDirectory v2.3.76 - 2024-09-05 = * GD > Post Features shows error when tag does not exists - FIXED * Add alt text to OSM marker icon if alt text saved in media - CHANGED diff --git a/vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php b/vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php index b41c88f8..3e429eab 100644 --- a/vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php +++ b/vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php @@ -1138,12 +1138,8 @@ public static function custom_css($compatibility = true) { $is_fse = true; } - $custom_admin = $is_fse ? true : apply_filters('ayecode_ui_custom_admin', false ); - - - if(!empty($colors) && $custom_admin ){ + if(!empty($colors)){ $d_colors = self::get_colors(true); - //print_r($d_colors);exit; // $is_fse = !empty($_REQUEST['postType']) && $_REQUEST['postType']=='wp_template'; foreach($colors as $key => $color ){ @@ -1163,7 +1159,7 @@ public static function custom_css($compatibility = true) { echo ' body.modal-open #adminmenuwrap{z-index:999} body.modal-open #wpadminbar{z-index:1025}'; } - if( $aui_bs5 && defined( 'BLOCKSTRAP_VERSION' ) && $custom_admin ){ + if( $aui_bs5 && defined( 'BLOCKSTRAP_VERSION' ) ){ $css = ''; $theme_settings = wp_get_global_styles();