Hi,
Please insert given below snippet at functions.php of child theme.
<?php
$allposts = get_posts( 'numberposts=-1&post_type=post&post_status=any' );
foreach( $allposts as $postinfo ) {
$inspiration = get_post_meta( $postinfo->ID, '_li_love_count' );
foreach( $inspiration as $value ) {
delete_post_meta( $postinfo->ID, '_li_love_count', $value );
}
?>
Now load your website home page one time and remove this code.
OR
Please remove value for _li_love_count
meta key by following this article http://www.shoutmeloud.com/how-to-delete-custom-field-value-from-wordpress-database.html.
Thanks
Mohammad