Plugin Directory

Changeset 905761


Ignore:
Timestamp:
04/30/2014 05:45:44 PM (12 years ago)
Author:
pmenard
Message:

Simply-Exclude 2.0.6.2

Location:
simply-exclude/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • simply-exclude/trunk/readme.txt

    r900340 r905761  
    55Requires at least: 3.7
    66Tested up to: 3.9
    7 Stable tag: 2.0.6.1
     7Stable tag: 2.0.6.2
    88License: GPLv2
    99License URI: http://www.opensource.org/licenses/GPL-2.0
     
    5050
    5151== Changelog ==
     52
     53= 2.0.6.2 =
     54- Corrected reported issue related to undefined 'action' settings in the widget hooks. Thanks Arnold.
     55- Cleanup some of the CSS related to settings used within the dashboard area.
    5256
    5357= 2.0.6.1 =
  • simply-exclude/trunk/simplyexclude.php

    r768586 r905761  
    55Description: Provides an interface to selectively exclude/include all Taxonomies, Post Types and Users from the 4 actions used by WordPress. is_front, is_archive, is_search, is_feed. Also provides access to some of the common widgets user like tag cloud and categories listings.
    66Author: Paul Menard
    7 Version: 2.0.6.1
     7Version: 2.0.6.2
    88Author URI: http://www.codehooligans.com
    99*/
     
    3333    public function __construct() {
    3434       
    35         $this->se_version   = "2.0.6.1";
     35        $this->se_version   = "2.0.6.2";
    3636       
    3737        $this->admin_menu_label = __("Simply Exclude", SIMPLY_EXCLUDE_I18N_DOMAIN);
     
    749749        if (current_user_can('manage_options')) {       
    750750            if (!isset($columns['se-actions']))
    751                 $columns['se-actions'] = __('Simply Exclude', SIMPLY_EXCLUDE_I18N_DOMAIN). ' <a id="se-show-actions-panel" href="#">'. __('show', SIMPLY_EXCLUDE_I18N_DOMAIN) .'</a>';
     751                $columns['se-actions'] = '<a id="se-show-actions-panel" title="" href="#">'. __('Simply Exclude', SIMPLY_EXCLUDE_I18N_DOMAIN) .'</a>';
    752752        }
    753753        return $columns;
     
    23592359        $this->se_load_config();
    23602360       
     2361        //echo "widget_category<pre>"; print_r($this->se_cfg['data']['taxonomies']['category']['terms']['widget_category']); echo "</pre>";
     2362       
    23612363        if ( (isset($this->se_cfg['data']['taxonomies']['category']['terms']['widget_category']))
    23622364          && (count($this->se_cfg['data']['taxonomies']['category']['terms']['widget_category'])) )
    23632365        {
    2364             $action = $this->se_cfg['data']['taxonomies']['category']['actions']['widget_category']['action'];
     2366            $action = $this->se_cfg['data']['taxonomies']['category']['actions']['widget_category'];
    23652367            $terms  = $this->se_cfg['data']['taxonomies']['category']['terms']['widget_category'];
    23662368
     
    24142416                  && (count($this->se_cfg['data']['taxonomies']['post_tag']['terms']['widget_tag_cloud'])) )
    24152417                {
    2416                     $action = $this->se_cfg['data']['taxonomies']['post_tag']['actions']['widget_tag_cloud']['action'];
     2418                    $action = $this->se_cfg['data']['taxonomies']['post_tag']['actions']['widget_tag_cloud'];
    24172419                    $terms  = $this->se_cfg['data']['taxonomies']['post_tag']['terms']['widget_tag_cloud'];
    24182420
     
    24552457                  && (count($this->se_cfg['data']['taxonomies']['category']['terms']['widget_tag_cloud'])) )
    24562458                {
    2457                     $action = $this->se_cfg['data']['taxonomies']['category']['actions']['widget_tag_cloud']['action'];
     2459                    $action = $this->se_cfg['data']['taxonomies']['category']['actions']['widget_tag_cloud'];
    24582460                    $terms  = $this->se_cfg['data']['taxonomies']['category']['terms']['widget_tag_cloud'];
    24592461
  • simply-exclude/trunk/simplyexclude_style_admin.css

    r768586 r905761  
     1/*
    12input.se-term-input {
    23    width: 15px;
    34    float: left;
    45}
    5 
     6*/
    67table.simplyexclude-actions-panel td.action {
    78    width: 20%;
     
    5051}
    5152
     53td.column-se-actions ul.se-actions-list li input.se-term-input {
     54    width: 15px;
     55    /* float: left; */
     56}
     57
     58td.column-se-actions ul.se-actions-list li label {
     59    /* float: left; */
     60    vertical-align: top;
     61}
     62
     63
    5264.ui-accordion-header {
    5365    border-top-left-radius: 3px;
Note: See TracChangeset for help on using the changeset viewer.