Prevent number of votes from being displayed
-
Hi, I’ve been trying to remove the number of votes from being displayed when someone votes. I don’t want any numbers or 0s to be displayed. Obviously I still need vote counts to be recorded, I just don’t want them to be shown.
I’ve successfully removed the number of votes from being shown by amending “wti-like-post-site.php” as follows:
Line 118 WAS $wti_like_post .= "<span class='lc-".$post_id." lc'>" . $like_count . "</span></a></div>"; Changed to $wti_like_post .= "<span class='lc-".$post_id." lc'>" . "" . "</span></a></div>"; Also line 131 WAS $wti_like_post .= "<span class='unlc-" . $post_id . " unlc'>" . $unlike_count . "</span></a></div> "; Changed to $wti_like_post .= "<span class='unlc-" . $post_id . " unlc'>" . "" . "</span></a></div> ";
However, once I click on a button, the vote numbers return. How can I remove them permanently? Thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Prevent number of votes from being displayed’ is closed to new replies.