Hi,
I've created a view with a custom template which works great until I start adding a contextual filter. This seems pretty straight forward and the query I believe is working how it should. My problem is that when the filter validates, my custom views.tpl template gets ignored. When I add my "exception" filter to the address bar, all the pieces of content show up how it should. It also uses my custom views template.
So basically I'm curious why when the filter validates, does my custom views tpl not render?
I've printed out an export of my view.
If anyone has any recommendations on what i'm doing that would be great.
The page can be accessed at kaymerica.com/news . You can use the taxonomy menu on the right to filter by category. Also you can see how my view is supposed to look if you use kaymerica.com/news/all
$view = new view;
$view->name = 'news_landing';
$view->description = '';
$view->tag = 'default';
$view->base_table = 'node';
$view->human_name = 'news-landing';
$view->core = 7;
$view->api_version = '3.0-alpha1';
$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */
/* Display: Master */
$handler = $view->new_display('default', 'Master', 'default');
$handler->display->display_options['title'] = 'News & Events';
$handler->display->display_options['access']['type'] = 'perm';