This topic has 2 replies, 2 voices, and was last updated 7 years, 6 months ago ago by Rose Tyler
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
Hello,
I sent your report to our developers.
Thank you for the notice.
Regards,
Rose Tyler.
You must be logged in to reply to this topic.Log in/Sign up