Hey guys I some what got mine working with this bug. I still have other issues but that may be a conflict with my theme.
Liking 1 reply would like them all on refresh of the page.
Error I was getting was on line 244 in wp-content/plugins/wp-ulike/inc/wp-ulike.php
I changed:
$post_ID = !$replyId ? $post->ID : $replyID;
to
$post_ID = !$replyID ? $post->ID : $replyID;
VERY subtle change but its in the first $replyId to ID.
The variable above that line is defined as $replyID but line 244 was using lowercase “D”
Anyways that sorted one of my issues 😀 Home it helps someone!