How Do I Remove Comment Date and/or Comment Date Link

Check if your theme has its own comment template by going to [yoursite.com]/wp-admin/theme-editor.php (when logged in as an administrator). Then look at the right column and try to find comments.php file. If it’s there, it controls the way your comments are displayed, so you can manually delete hyperlinks and dates from it. If you can’t … Read more

Retrieve meta_value from add_comment_meta

You are saving your data with non-unique key (false as last argument), but retrieve it it as singular data (true as last argument). This is likely returning you the first voter on comment. You need to retrieve complete array of values and work with it to be operating on complete data.