The woothemes-testimonials-template.php file on line 159 needs a check otherwise will throw an error because can’t divide by 0.
This:
if ($count%$args[‘columns’] == 0 && count( $query ) != $count && $args[‘type’] == ‘grid’) {
$html .= ‘<div class=”clear”></div></div><div class=”row”>’;
}
To this:
if ( count( $args[‘columns’] ) ) {
if ($count%$args[‘columns’] == 0 && count( $query ) != $count && $args[‘type’] == ‘grid’) {
$html .= ‘<div class=”clear”></div></div><div class=”row”>’;
}
}
Thanks