I had to use Views override to show Taxonomy nodes with a pager. But there is noway to set block to display on the pager page somehow...
My taxonomy page alias is /actualites, so before i set the block to display on /actualites and actualites/* (The second is used by subterm alias), now with the pager i can't find a work around.
I've tried actualites* and actualites?page=* which of course didn't work.
I've tried to set a php conditions
//passage du term dans les variable de la page
if (arg(0) == 'taxonomy' && arg(1) == 'term' && is_numeric(arg(2))) {
$tid = (int)arg(2);
$term = taxonomy_term_load($tid);
$vars['term'] = $term;
$parent = taxonomy_get_parents($term->tid);
$id_actualite = '6';
if (array_key_exists($id_actualite, $parent) || arg(2) == $id_actualite) {
return True;
}
}
Which worked for all the pages BESIDE the pager one.
And i've tried displaying the block on all page and managing it through template, but again for the pager page there is NO block in that region.... even when the block is set to show on all pages...
I'm kinda lost there...