Plugin Directory

Changeset 3080219


Ignore:
Timestamp:
05/02/2024 09:14:16 AM (2 years ago)
Author:
cusmin
Message:

v7.2.3 - bug fixes

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

Legend:

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

    r3060991 r3080219  
    11== Change Log ==
     2
     3= 7.2.3 =
     4* Fixed bug with Welcome box not dismissing
     5* Fixed bug with Welcome to WordPress showing on login page over logo
    26
    37= 7.2.2 =
  • ag-custom-admin/trunk/plugin.php

    r3060991 r3080219  
    55Description: CHANGE: admin menu, login page, admin bar, dashboard widgets, custom colors, custom CSS & JS, logo & images
    66Author: Cusmin
    7 Version: 7.2.2
     7Version: 7.2.3
    88Text Domain: ag-custom-admin
    99Domain Path: /languages
     
    2929
    3030class AGCA{
    31     private $agca_version = "7.2.2";
     31    private $agca_version = "7.2.3";
    3232    private $colorizer = "";
    3333    private $agca_debug = false;
     
    16411641                    <?php /*Remove Dashboard widgets*/ ?>
    16421642                    <?php
    1643 
     1643                        ?>
     1644                        jQuery('.welcome-panel-close').click(function(){
     1645                          setTimeout(function(){
     1646                            jQuery("#welcome-panel").removeAttr('style')
     1647                          }, 0)
     1648                        });
     1649                        <?php
    16441650                        if(get_option('agca_dashboard_widget_welcome')==true){
    16451651                            ?>jQuery("#welcome-panel").css("display","none");<?php
    16461652                        }else{
    1647                             ?>jQuery("#welcome-panel").css("display","block");<?php
     1653                            ?> jQuery("#welcome-panel:not(.hidden)").css("display","block");<?php
    16481654                        }
    16491655                        if(get_option('agca_dashboard_widget_health_status')==true){
     
    18541860                    advanced_url = "<?php echo $this->sanitize_html(get_option('agca_login_photo_url')); ?>";
    18551861                    var $url = "url(" + advanced_url + ")";
    1856                     jQuery("#login h1 a").css("background",$url+' no-repeat');
    1857                     jQuery("#login h1 a").hide();
     1862                    var $a = jQuery("#login h1 a");
     1863                    $a.css("background",$url+' no-repeat');
     1864                    $a.hide();
    18581865                    image = jQuery("<img />").attr("src",advanced_url);
    18591866                    jQuery(image).on('load', function() {
    18601867                        var originalWidth = 326;
    18611868                        var widthDiff = this.width - originalWidth;
    1862                         jQuery("#login h1 a").height(this.height);
    1863                         jQuery("#login h1 a").width(this.width);
    1864                         jQuery("#login h1 a").css("background-size",this.width+"px "+this.height+"px");
     1869                        $a.height(this.height)
     1870                          .width(this.width)
     1871                          .css("background-size",this.width+"px "+this.height+"px")
     1872                          .css("text-indent", "-9999px")
     1873                          .css("font-size", 0);
     1874
    18651875
    18661876                        var loginWidth = jQuery('#login').width();
     
    18691879
    18701880                        if(loginWidth > photoWidth){
    1871                             jQuery("#login h1 a").css('margin','auto');
     1881                            $a.css('margin','auto');
    18721882                        }else{
    1873                             jQuery("#login h1 a").css('margin-left',-(widthDiff/2)+((loginWidth-originalLoginWidth)/2)+"px");
     1883                            $a.css('margin-left',-(widthDiff/2)+((loginWidth-originalLoginWidth)/2)+"px");
    18741884                        }
    18751885
    1876                         jQuery("#login h1 a").show();
     1886                        $a.show();
    18771887                    });
    18781888                    <?php } ?>
  • ag-custom-admin/trunk/readme.txt

    r3060991 r3080219  
    22Contributors: cusmin
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=agca@cusmin.com&amount=10&item_name=Support+for+AGCA+Development
    4 Tags: customize dashboard, hide admin bar, customize admin menu, customize login page, hide widgets, admin menu, dashboard, edit admin menu, admin bar, login page, widgets, customize admin
     4Tags: custom dashboard, custom menu, custom admin, custom login, white label
    55Requires at least: 3.0
    6 Tested up to: 6.4.3
    7 Stable tag: 7.2.2
     6Tested up to: 6.5.2
     7Stable tag: 7.2.3
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl.txt
     
    160160== Change Log ==
    161161
     162= 7.2.3 =
     163* Fixed bug with Welcome box not dismissing
     164* Fixed bug with Welcome to WordPress showing on login page over logo
     165
     166[SEE ALL LOGS](https://plugins.svn.wordpress.org/ag-custom-admin/trunk/changelog.txt)
     167
     168== Upgrade Notice ==
     169
     170= 7.2.3 =
     171* Bug fixes
     172
    162173= 7.2.2 =
    163174* Maintenance release
     
    168179= 7.2 =
    169180* Fixed issue with the login image
    170 
    171 = 7.1.5 =
    172 * Improved functionality of the admin menu editor (adding new items)
    173 * Text improvements
    174 
    175 [SEE ALL LOGS](https://plugins.svn.wordpress.org/ag-custom-admin/trunk/changelog.txt)
    176 
    177 == Upgrade Notice ==
    178 
    179 = 7.2.1 =
    180 * WordPress compatibility
    181 
    182 = 7.2 =
    183 * Fixed issue with the login image
Note: See TracChangeset for help on using the changeset viewer.