_sidebar_left.inc.php


Notice: Undefined variable: params in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 63

Warning: array_merge(): Expected parameter 2 to be an array, null given in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 63

Notice: Trying to access array offset on value of type null in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 70

Notice: Trying to access array offset on value of type null in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 80

Notice: Trying to access array offset on value of type null in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 85

Notice: Trying to access array offset on value of type null in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 91

Notice: Trying to access array offset on value of type null in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 93

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.