Plugin Directory

Changeset 638420


Ignore:
Timestamp:
12/13/2012 10:41:08 AM (13 years ago)
Author:
reflectionmedia
Message:

made plugin compatible with WP 3.5

Location:
custom-taxonomy-creator/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • custom-taxonomy-creator/trunk/readme.txt

    r512366 r638420  
    55Tags: taxonomy creator, custom taxonomy creator, custom taxonomy, taxonomy, custom taxonomy builder, taxonomy builder
    66Requires at least: 3.1
    7 Tested up to: 3.3.1
    8 Stable tag: 1.0
     7Tested up to: 3.5
     8Stable tag: 1.0.1
    99
    1010With WCK Taxonomy Creator you can create and edit custom taxonomies and attach them to post types.
     
    45451. Taxonomy Creator UI: screenshot-1.jpg
    46462. Taxonomy listing: screenshot-2.jpg
     47
     48== Changelog ==
     49
     50= 1.0.1 =
     51* Compatible with WordPress 3.5
  • custom-taxonomy-creator/trunk/wck-ctc.php

    r512366 r638420  
    44Description: Creates Custom taxonomies
    55Author: Reflection Media, Madalin Ungureanu
    6 Version: 1.0
     6Version: 1.0.1
    77Author URI: http://www.reflectionmedia.ro
    88
  • custom-taxonomy-creator/trunk/wordpress-creation-kit-api/wordpress-creation-kit.css

    r512366 r638420  
    6464
    6565.wck-edit .button-secondary{
    66     padding:3px 15px;
     66    padding:0 15px;
    6767}
    6868
  • custom-taxonomy-creator/trunk/wordpress-creation-kit-api/wordpress-creation-kit.js

    r512366 r638420  
    172172        jQuery('#container_'+value).parent().css({'opacity':'0.4', 'position':'relative'}).append('<div id="mb-ajax-loading"></div>');
    173173       
    174         jQuery( '#container_' + value + " tbody" ).sortable("disable");
     174        if( jQuery( '#container_' + value + " tbody" ).hasClass('ui-sortable') )
     175            jQuery( '#container_' + value + " tbody" ).sortable("disable");
    175176       
    176177        jQuery.post( ajaxurl ,  { action:"wck_show_update"+value, meta:value, id:id, element_id:element_id, _ajax_nonce:nonce}, function(response) {   
     
    236237                    jQuery('.mb-table-container tbody td').css('width', function(){ return jQuery(this).width() });
    237238                   
    238                     jQuery( '#container_' + value + " tbody" ).sortable("enable");
     239                    if( jQuery( '#container_' + value + " tbody" ).hasClass('ui-sortable') )
     240                        jQuery( '#container_' + value + " tbody" ).sortable("enable");
    239241                   
    240242                    jQuery('#container_'+value).parent().css('opacity','1');
Note: See TracChangeset for help on using the changeset viewer.