Maybe I am missing something here, but I cannot get the 'node order' tab to display in the admin theme. I had to add the following to nodeorder.module in order for it to finally work:

/**
 * Implements hook_admin_paths().
 */
function nodeorder_admin_paths(){
  $paths = array(
    'taxonomy/term/*/order' => TRUE
  );

  return $paths;
}

using 'nodeorder/term/*/order', did not work.

Comments

  • dieuwe committed bf440aa on 7.x-1.x authored by in0ni
    Issue #2093383, by in0ni: node order page does not display in the admin...
dieuwe’s picture

Issue summary: View changes
Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.