Before JBST used the_excerpt by default (in content.php). This broke thing such as the buddypress registration form (see: http://wordpress.org/support/topic/registration-not-working-5).
For now the type is changed to:
if(is_home() || is_category() || is_tag() || is_search())
{
the_excerpt();
}
else
{
the_content();
}
We should consider to make the_content() default or make it an option.
Before JBST used the_excerpt by default (in content.php). This broke thing such as the buddypress registration form (see: http://wordpress.org/support/topic/registration-not-working-5).
For now the type is changed to:
We should consider to make the_content() default or make it an option.