WPIntell

Source evidence

[Plugin: Term Menu Order] Init after everything

Term Menu Order · support · 2012-05-31T01:24:00+00:00

mixedsentiment
mediumseverity
0.78relevance
4replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

4 / 25 rows with source links

16.0% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

21 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
akbortoli resolved
on “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.

Comments

4 shown
akbortoli 2012-05-31T01:49:00+00:00

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.

akbortoli 2012-05-31T01:52:00+00:00

Testing on WP Multisite “3.3.2” and it does not work as column “menu_order” is missing for “wp_terms”.

Bill Erickson 2012-07-04T22:09:00+00:00

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.

akbortoli 2012-07-05T00:30:00+00:00

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.