Hi,
I am sorry, is this on the same URL as you name links to or its still in maintenance mode? Please set up a guest in maintenance and send it to usjahm [at] gmail.com.
But if all you want to do is ensure that only one parent of a portfolio gets listed in the breadcrumbs, please open up framework/php/class-breadcrumbs.php from the theme's directory and on lines 284-292, replace this:
if($post_type == 'portfolio')
{
$parents = get_the_term_list( $post_id, 'portfolio_entries', '', '$$$', '' );
$parents = explode('$$$',$parents);
foreach ($parents as $parent_item)
{
if($parent_item) $trail[] = $parent_item;
}
}
with
if($post_type == 'portfolio')
{
$parents = get_the_term_list( $post_id, 'portfolio_entries', '', '$$$', '' );
$parents = explode('$$$',$parents);
foreach ($parents as $parent_item)
{
if($parent_item) $trail[] = $parent_item;
break; //stop adding after first parent added to bread crumbs
}
}
Let us know please if this is what you were looking to do.
Thanks,
Nick