Hello,
I am trying to use the views module to list all articles under a specific vocabulary. This should essentially work fine, but the issue I am having is that it lists single articles multiple times - once for each tag (or taxonomy term) assigned to it.
My taxonomy hierarchy is simple a free-form editing "tagging" system.
Below is an export of my views configuration.
Any advice welcome.
Thanks,
Josh
$view = new stdClass();
$view->name = 'Buyers';
$view->description = 'Buyers page';
$view->access = array (
0 => '1',
1 => '2',
2 => '3',
);
$view->view_args_php = '';
$view->page = TRUE;
$view->page_title = 'Buyers';
$view->page_header = 'Buyers General Page
Hello
Hey';
$view->page_header_format = '3';
$view->page_footer = 'do we
need
t
this';
$view->page_footer_format = '3';
$view->page_empty = 'There are currently no articles published under buyers.';
$view->page_empty_format = '3';
$view->page_type = 'teaser';
$view->url = 'buyers_view';
$view->use_pager = TRUE;
$view->nodes_per_page = '10';
$view->sort = array (
);
$view->argument = array (
);
$view->field = array (
);
$view->filter = array (
array (
'tablename' => 'node',
'field' => 'status',
'operator' => '=',
'options' => '',
'value' => '1',
),