Index: term_display.install =================================================================== --- term_display.install (revision 687) +++ term_display.install (working copy) @@ -41,4 +41,8 @@ function term_display_schema() { function term_display_install() { // Create tables. drupal_install_schema('term_display'); + + // Set module weight for it to run after i18ntaxonomy module (if installed), + // but before views. + db_query("UPDATE {system} SET weight = 6 WHERE name = 'term_display' AND type = 'module'"); }