thanks for the clarification. i was checking the php errors so i turned the debug on. btw, this is a very nice plugin!
order matters–
if i change line from
<?php if ( is_search() ) : // Only display Excerpts for Search ?>
to
<?php if ( is_search() || is_archive() ) : // Only display Excerpts for Search ?>
it breaks theme/crashes
BUT if i change it to
<?php if ( is_archive() || is_search() ) : // Only display Excerpts for Search ?>
IT WORKS (excerpts on archive pages)
thanks for the suggestion. i made the change.