Conversation
supporton “ns_tmo_plugin.class.php” line 25 if you set: add_action(‘init’, array(&$this, ‘init’), 99); will make sure custom taxonomies are also included if created using “functions.php” and not a plugin. Thanks, Alysson Bortoli http://wordpress.org/extend/plugins/term-menu-order/
Also on “ns_tmo_plugin.class.php” line 45 if you check: return ( isset( $term->$custom_column ) ) ? $term->$custom_column : FALSE; avoid a compatibility issue with “Simply Show IDs” plugin. Don’t really know if False is the best returned value if not set “$custom_column”, but if fixed my compatibility.
Testing on WP Multisite “3.3.2” and it does not work as column “menu_order” is missing for “wp_terms”.
I’ve addressed your first issue ( https://github.com/billerickson/Term-Menu-Order/commit/c2676188309710ce12031fbf9a93f7e85ddd1ee8 ) and second issue ( https://github.com/billerickson/Term-Menu-Order/commit/b6836b2a7174d13de40a13438aa66ccd5e02249d ). I don’t have any experience with multisite so unfortunately can’t troubleshoot that specific issue.
Thank you Bill, the multisite issue i think is a bug with WP core as it does not create column “menu_order” on “wp_terms” sites table.
Also on “ns_tmo_plugin.class.php” line 45 if you check: return ( isset( $term->$custom_column ) ) ? $term->$custom_column : FALSE; avoid a compatibility issue with “Simply Show IDs” plugin. Don’t really know if False is the best returned value if not set “$custom_column”, but if fixed my compatibility.
Testing on WP Multisite “3.3.2” and it does not work as column “menu_order” is missing for “wp_terms”.
I’ve addressed your first issue ( https://github.com/billerickson/Term-Menu-Order/commit/c2676188309710ce12031fbf9a93f7e85ddd1ee8 ) and second issue ( https://github.com/billerickson/Term-Menu-Order/commit/b6836b2a7174d13de40a13438aa66ccd5e02249d ). I don’t have any experience with multisite so unfortunately can’t troubleshoot that specific issue.
Thank you Bill, the multisite issue i think is a bug with WP core as it does not create column “menu_order” on “wp_terms” sites table.