I am not quite sure this is the right place to post but as i18n_taxonomy refuses to mess with views and i18nviews is supposed to handle all the views implementation of i18n modules I suppose this is the correct place to post.

As i18n_taxonomy is altering the taxonomy field it breaks the term relation provided from the views module. What should be done is to add:

/**
* Implements hook_field_views_data().
*
* Views integration for taxonomy_term_reference fields. Adds a term relationship to the default
* field data.
*
* @see field_views_field_default_views_data()
*/
function i18n_taxonomy_field_views_data($field) {
return taxonomy_field_views_data($field);
}

/**
* Implements hook_field_views_data_views_data_alter().
*
* Views integration to provide reverse relationships on term references.
*/
function i18n_taxonomy_field_views_data_views_data_alter(&$data, $field) {
taxonomy_field_views_data_views_data_alter($data, $field);
}

in i18nviews.views.inc file.
I see there has been a try with hook_field_views_data() but that will not work for all the missed functionality.

Comments

webflo’s picture

Status: Active » Closed (duplicate)

Thanks for reporting this issue. Marked as duplicate. #1172116-5: Missing filter: taxonomy fields.