How do I disable the profile link in the list of likers?
Notifications
Clear all
Jun 04, 2019 11:32 pm
2 Replies
Jun 05, 2019 11:20 am
Hi @bobbyw,
The simplest way to do it is to prevent event via CSS code. You should add the CSS code in Dashboard > Comments > Settings > Styling > "Custom CSS Code" textarea.
.wv-vote-content .wv-user-info a{
pointer-events: none;
cursor: default;
text-decoration: none;
}
Please don't forget to delete all caches before checking.
Jun 05, 2019 5:43 pm
Was hoping there was a none css option. Thanks for the info. 🙂