Plugin Directory

Changeset 2859680


Ignore:
Timestamp:
02/03/2023 02:10:38 PM (3 years ago)
Author:
cusmin
Message:

tagged 7.1.4 - fixed admin bar hiding for admin users

Location:
ag-custom-admin/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ag-custom-admin/trunk/changelog.txt

    r2816843 r2859680  
    11== Change Log ==
     2
     3= 7.1.3 =
     4* Fixed compatibility issue with WP Forms
     5
     6= 7.1.2 =
     7* Compatibility with WordPress 6.1.1
     8* Fixed input field sanitization issues
     9
     10= 7.1.1 =
     11* Compatibility with WordPress 6.1
    212
    313= 7.1 =
    414* WordPress 6.0 compatibility
     15* Fixed issue with New menu item in admin bar
     16* Fixed issues with dependable fields
    517
    618= 7.0.2 =
  • ag-custom-admin/trunk/plugin.php

    r2858474 r2859680  
    55Description: CHANGE: admin menu, login page, admin bar, dashboard widgets, custom colors, custom CSS & JS, logo & images
    66Author: Cusmin
    7 Version: 7.1.3
     7Version: 7.1.4
    88Text Domain: ag-custom-admin
    99Domain Path: /languages
    1010Author URI: https://cusmin.com/
    1111
    12     Copyright 2022. Cusmin (email : info@cusmin.com)
     12    Copyright 2023. Cusmin (email : info@cusmin.com)
    1313
    1414    This program is free software: you can redistribute it and/or modify
     
    2929
    3030class AGCA{
    31     private $agca_version = "7.1.3";
     31    private $agca_version = "7.1.4";
    3232    private $colorizer = "";
    3333    private $agca_debug = false;
     
    7979
    8080    function hide_admin_bar_css(){
     81        if(is_user_logged_in() &&
     82            current_user_can($this->admin_capability()) &&
     83            get_option('agca_role_allbutadmin')){
     84            return;
     85        }
    8186        ?>
    8287        <style type="text/css">
  • ag-custom-admin/trunk/readme.txt

    r2858474 r2859680  
    55Requires at least: 3.0
    66Tested up to: 6.1.1
    7 Stable tag: 7.1.3
     7Stable tag: 7.1.4
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl.txt
     
    160160== Change Log ==
    161161
     162= 7.1.4 =
     163* Fixed issue for hiding admin bar for admin users
     164
    162165= 7.1.3 =
    163166* Fixed compatibility issue with WP Forms
     
    179182== Upgrade Notice ==
    180183
     184= 7.1.4 =
     185* Fixed issue for hiding admin bar for admin users
     186
    181187= 7.1.3 =
    182188* Fixed compatibility issue with WP Forms
    183 
    184 = 7.1.2 =
    185 * Compatibility with WordPress 6.1.1
    186 * Fixed input field sanitization issues
    187 
    188 = 7.1.1 =
    189 * Compatibility with WordPress 6.1
    190 
    191 = 7.1 =
    192 * WordPress 6.0 compatibility
    193 
    194 = 7.0.2 =
    195 * Fixed compatibility issues with page builders. Fixed warning messages.
Note: See TracChangeset for help on using the changeset viewer.