-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed error with lessc_formatter_compressed class. * Added option to disable login page styling. * Fixed styling of password reset page. * Fixed styling of registration page. * Fixed undefined variable "visibleText". * Fixed styling of input boxes. * Updated part of welcome widget. * Added darker background to clear PNG images in Media Library. * Added option to change the admin area link colors.
- Loading branch information
1 parent
445a32b
commit 7368600
Showing
20 changed files
with
348 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,6 @@ | |
include('callbacks.php'); | ||
include('createOptionsPage.php'); | ||
include('help.php'); | ||
include('setVariables.php'); | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<?php if ( __FILE__ == $_SERVER['SCRIPT_FILENAME'] ) { exit; } | ||
$aquilaOptions = get_option( 'aquila_settings' ); | ||
|
||
if ( ! function_exists( 'get_plugins' ) ) { | ||
require_once ABSPATH . 'wp-admin/includes/plugin.php'; | ||
} | ||
|
||
$aquilaShowPluginSupport = $aquilaHideDashboardMetaboxes = $aquilaNoPostToBlog = $aquilaHideFooter = $aquilaShowNag = $aquilaShowAdminbarLinks = $aquilaShowFullAdminbar = $aquilaCustomLogo = $aquilaCustomLogoSquare = $aquilaColourPrimary = $aquilaColourSecondary = $aquilaColourMenuBackground = $aquilaColourMenuText = $aquilaLoginDisable = false; | ||
|
||
$aquilaDetails = get_plugins()['aquila-admin-theme/aquila-admin-theme.php']; | ||
$aquilaVer = $aquilaDetails['Version']; | ||
|
||
// Checkboxes | ||
if ( aquila_isset('aquila_chk_pluginSupport') ) { | ||
$aquilaShowPluginSupport = true; | ||
} | ||
|
||
if ( aquila_isset('aquila_chk_dashBoxes') ) { | ||
$aquilaHideDashboardMetaboxes = true; | ||
} | ||
|
||
if ( aquila_isset('aquila_chk_postBlog') ) { | ||
$aquilaNoPostToBlog = true; | ||
} | ||
|
||
if ( aquila_isset('aquila_chk_hideFooter') ) { | ||
$aquilaHideFooter = true; | ||
} | ||
|
||
if ( aquila_isset('aquila_chk_showNag') ) { | ||
$aquilaShowNag = true; | ||
} | ||
|
||
if ( aquila_isset('aquila_chk_abLinks') ) { | ||
$aquilaShowAdminbarLinks = true; | ||
} | ||
|
||
if ( aquila_isset('aquila_chk_abVisible') ) { | ||
$aquilaShowFullAdminbar = true; | ||
} | ||
/* | ||
if ( aquila_isset('aquila_new_logo') ) { | ||
$aquilaCustomLogo = true; | ||
} | ||
if ( aquila_isset('aquila_new_logo_sqr') ) { | ||
$aquilaCustomLogoSquare = true; | ||
} | ||
if ( aquila_isset('aquila_primary_colour') ) { | ||
$aquilaColourPrimary = true; | ||
} | ||
if ( aquila_isset('aquila_secondary_colour') ) { | ||
$aquilaColourSecondary = true; | ||
} | ||
if ( aquila_isset('aquila_menu_back_colour') ) { | ||
$aquilaColourMenuBackground = true; | ||
} | ||
if ( aquila_isset('aquila_menu_text_colour') ) { | ||
$aquilaColourMenuText = true; | ||
} | ||
*/ | ||
if ( aquila_isset('aquila_chk_loginDisable') ) { | ||
$aquilaLoginDisable = true; | ||
} | ||
|
||
|
||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.