• Thanks for this plugin. I was able to reconfigure it to work for a custom taxonomy.

    I also made a few changes to the code that I thought might be helpful for the next upgrade:

    line 41:

    add_action('admin_menu', 'mycategoryorder_js_libs');
    to
    add_action('admin_print_scripts', 'mycategoryorder_js_libs');

    CSS changes:
    I wrapped the submit button in the standard wordpress <p class="submit> ... </p>


    ul#order{
    width:300px;
    margin:10px;
    padding:10px;
    list-style:none;
    background-color:#fff;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    }
    li.lineitem {
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    background-color:#ddd;
    color:#000;
    cursor:move;
    font-size:13px;
    margin-bottom:5px;
    padding:0.5em 1em;
    }
    li.lineitem:hover{
    background-color:#c3c3c3;
    color:#010101;

    }

    https://www.ads-software.com/extend/plugins/my-category-order/

Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘[Plugin: My Category Order] Custom Taxonomy Order and Code Improvements’ is closed to new replies.