Plugin Directory

Changeset 851884


Ignore:
Timestamp:
02/05/2014 11:36:46 AM (12 years ago)
Author:
bigbadboy
Message:

Removed admin font change as it was conflicting and ugly.

Location:
point-and-stare-cms-functions/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • point-and-stare-cms-functions/trunk/pands-functions.php

    r843086 r851884  
    44  Plugin URI: http://wordpress.org/extend/plugins/point-and-stare-cms-functions/
    55  Description: This plugin will generate special functions that help convert your WordPress install into a white labelled CMS, add security and generally protect the admin.
    6   Version: 3.0.2
     6  Version: 3.0.3
    77  Author: Lee Rickler
    88  Author URI: http://pointandstare.com
     
    119119                                <td><?php _e('Don\'t like \'Howdy\'?', 'pands'); ?> <small><?php _e('(top right)</small>', 'pands'); ?><br /><span class="th-small"><?php _e('Change it to something more \'local\'', 'pands'); ?>.</span></td>
    120120                                <td><input class="ui-widget-text" name="pands_script_plugin_options[change_howdy]" type="text" value="<?php echo $options['change_howdy']; ?>" /></td>
    121                             </tr>
    122                             <tr>
    123                                 <td><?php _e('Change admin background colour by adding the hex ref - example ff0000.', 'pands'); ?></span></td>
    124                                 <td><input class="ui-widget-text" name="pands_script_plugin_options[custom_bg]" type="text" value="<?php echo $options['custom_bg']; ?>" /></td>
    125121                            </tr>
    126122                        </table>
     
    646642
    647643add_action('admin_head', 'pands_custom_admin_logo');
    648 
    649 // CUSTOM ADMIN FONT AND SIZE
    650 function pands_custom_admin_font() {
    651     $options = get_option('pands_script_plugin_options');
    652     if ($options['custom_bg'] == "") {
    653         echo '';
    654     } else {
    655         echo '<style>
    656     body {
    657       background: #' . $options['custom_bg'] . '!important;
    658      
    659     }
    660   </style>';
    661     }
    662 }
    663 
    664 add_action('admin_head', 'pands_custom_admin_font');
    665 
    666644
    667645// HIDE REVISIONS
  • point-and-stare-cms-functions/trunk/readme.txt

    r843088 r851884  
    5151
    5252== Changelog ==
     53
     54= v3.0.3 =
     55* Removed admin font change as it was conflicting and ugly.
    5356
    5457= v3.0.2 =
Note: See TracChangeset for help on using the changeset viewer.