Email problem in FallSeason theme solved
I solved the problem with using the WP-Email plugin in the FallSeason theme. The problem was that when checking to see if there are any posts, several templates (index.php, page.php, and single.php) were checking this way:
if ($posts)
The correct way to check for posts is to do this instead:
if (have_posts())
Changing that one line in those templates [...]



