Plugin Directory

Changeset 1892117


Ignore:
Timestamp:
06/13/2018 11:50:51 AM (8 years ago)
Author:
rajilesh
Message:

Fixed taxonomy edit page issue

Location:
optiontree-metabox-ui
Files:
88 added
4 edited

Legend:

Unmodified
Added
Removed
  • optiontree-metabox-ui/trunk/css/metabox-ui.css

    r1882505 r1892117  
    182182        font-size: 13px;
    183183}
     184
     185
     186.ot-metabox-wrapper .format-settings label {
     187    font-size: 16px;
     188}
  • optiontree-metabox-ui/trunk/includes/rj-ot-taxonomy-meta-box-api.php

    r1776657 r1892117  
    3939     $taxonomies = isset($this->meta_box['taxonomies']) ?  $this->meta_box['taxonomies'] : array();
    4040        foreach($taxonomies as $taxonomy){
    41             add_action( "{$taxonomy}_add_form_fields", array( $this, 'add_meta_boxes' ) , 10, 2);
    42             add_action( "{$taxonomy}_edit_form_fields", array( $this, 'add_meta_boxes' ), 10, 2 ); 
     41            add_action( "{$taxonomy}_add_form_fields", array( $this, 'add_meta_boxes' ) , 999, 2);
     42            add_action( "{$taxonomy}_edit_form", array( $this, 'add_meta_boxes' ), 10, 2 ); 
    4343            add_action( "edited_{$taxonomy}", array( $this, 'save_meta_box' ) , 10, 2); 
    4444            add_action( "create_{$taxonomy}", array( $this, 'save_meta_box' ), 10, 2 );
     
    8989      echo '
    9090      <style type="text/css">
    91       @media all and (min-width:1024px){
    9291      .taxonomy_metabox_wrap{
    93       width:48% !important;
    94       float:right;
    95       }
    96       .form-table{
    97       width:48%;
    98       float:left;
    99       clear:none;
    100       }
    101       .submit{
    102       clear:both;
    103       }
    104       .rj_map_option_type{
    105         max-width:500px;
    106       }
    107      
    108       #wpfooter{
    109       position:static;
    110       }
    111       body > p.submit{
    112        
    113     margin-left: 178px;
    114       }
     92        padding-bottom:20px;
    11593      }
    11694      </style>';
  • optiontree-metabox-ui/trunk/index.php

    r1882513 r1892117  
    1212Author: Rajilesh Panoli
    1313
    14 Version: 9.02
     14Version: 9.03
    1515
    1616Contributors: rajilesh
  • optiontree-metabox-ui/trunk/readme.txt

    r1882513 r1892117  
    99Requires at least: 4.9
    1010
    11 Tested up to: 5.0
     11Tested up to: 4.9.6
    1212
    13 Stable tag: 9.02
     13Stable tag: 9.03
    1414
    1515License: GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.