Have altered code to exclude echo when category is [z] i.the one with the search post and weather post,rather than have FIELD z come up.
From
if (isset ($Item))
{
echo "<h3>This Field</h3>";
$Item->categories( array( 'include_other' => false, ) );
}
To
if (isset ($Item) && $Item->main_cat_ID != 101)
{
echo "<h3>This Field</h3>";
$Item->categories( array( 'include_other' => false, ) );
}
In [index.main.php] there' no category heading as it's used by search results and login page.