Changeset 3080219
- Timestamp:
- 05/02/2024 09:14:16 AM (2 years ago)
- Location:
- ag-custom-admin/trunk
- Files:
-
- 3 edited
-
changelog.txt (modified) (1 diff)
-
plugin.php (modified) (5 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ag-custom-admin/trunk/changelog.txt
r3060991 r3080219 1 1 == 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 2 6 3 7 = 7.2.2 = -
ag-custom-admin/trunk/plugin.php
r3060991 r3080219 5 5 Description: CHANGE: admin menu, login page, admin bar, dashboard widgets, custom colors, custom CSS & JS, logo & images 6 6 Author: Cusmin 7 Version: 7.2. 27 Version: 7.2.3 8 8 Text Domain: ag-custom-admin 9 9 Domain Path: /languages … … 29 29 30 30 class AGCA{ 31 private $agca_version = "7.2. 2";31 private $agca_version = "7.2.3"; 32 32 private $colorizer = ""; 33 33 private $agca_debug = false; … … 1641 1641 <?php /*Remove Dashboard widgets*/ ?> 1642 1642 <?php 1643 1643 ?> 1644 jQuery('.welcome-panel-close').click(function(){ 1645 setTimeout(function(){ 1646 jQuery("#welcome-panel").removeAttr('style') 1647 }, 0) 1648 }); 1649 <?php 1644 1650 if(get_option('agca_dashboard_widget_welcome')==true){ 1645 1651 ?>jQuery("#welcome-panel").css("display","none");<?php 1646 1652 }else{ 1647 ?> jQuery("#welcome-panel").css("display","block");<?php1653 ?> jQuery("#welcome-panel:not(.hidden)").css("display","block");<?php 1648 1654 } 1649 1655 if(get_option('agca_dashboard_widget_health_status')==true){ … … 1854 1860 advanced_url = "<?php echo $this->sanitize_html(get_option('agca_login_photo_url')); ?>"; 1855 1861 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(); 1858 1865 image = jQuery("<img />").attr("src",advanced_url); 1859 1866 jQuery(image).on('load', function() { 1860 1867 var originalWidth = 326; 1861 1868 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 1865 1875 1866 1876 var loginWidth = jQuery('#login').width(); … … 1869 1879 1870 1880 if(loginWidth > photoWidth){ 1871 jQuery("#login h1 a").css('margin','auto');1881 $a.css('margin','auto'); 1872 1882 }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"); 1874 1884 } 1875 1885 1876 jQuery("#login h1 a").show();1886 $a.show(); 1877 1887 }); 1878 1888 <?php } ?> -
ag-custom-admin/trunk/readme.txt
r3060991 r3080219 2 2 Contributors: cusmin 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=agca@cusmin.com&amount=10&item_name=Support+for+AGCA+Development 4 Tags: custom ize dashboard, hide admin bar, customize admin menu, customize login page, hide widgets, admin menu, dashboard, edit admin menu, admin bar, login page, widgets, customize admin4 Tags: custom dashboard, custom menu, custom admin, custom login, white label 5 5 Requires at least: 3.0 6 Tested up to: 6. 4.37 Stable tag: 7.2. 26 Tested up to: 6.5.2 7 Stable tag: 7.2.3 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl.txt … … 160 160 == Change Log == 161 161 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 162 173 = 7.2.2 = 163 174 * Maintenance release … … 168 179 = 7.2 = 169 180 * Fixed issue with the login image 170 171 = 7.1.5 =172 * Improved functionality of the admin menu editor (adding new items)173 * Text improvements174 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 compatibility181 182 = 7.2 =183 * Fixed issue with the login image
Note: See TracChangeset
for help on using the changeset viewer.