Search
Close
AI Search
Classic Search
 Search Phrase:
 Search Type:
Advanced search options
 Search in Forums:
 Search in date period:

 Sort Search Results by:

AI Assistant
Notifications
Clear all

Disabling downvotes/dislikes

3 Posts
2 Users
0 Reactions
2,043 Views
(@skettyd)
Member Customer
Joined: 8 years ago
Posts: 2
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
  [#4431]

We would like to enable voting but only if we can disable the downvote option. We just want a 'like' or 'heart' option. Is that possible?



   
Quote
Astghik
(@astgh)
Illustrious Member Admin
Joined: 8 years ago
Posts: 6645
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
 

Hi @skettyd,

I'm sorry, but wpDiscuz doesn't have such a feature.

If you'd like to hide the Vote Down option, you should use the following CSS code, add it in Dashboard > Comments > Settings > Styling > "Custom CSS code" textarea:

span.wc-vote-result.wc-vote-result-dislike, span.wc-vote-link.wc-down.wc-separate.wc_vote.wc_not_clicked {
display: none !important;
}

 We just want a 'like' or 'heart' option. 

Please add the following code in your active theme's functions.php file:

if (!function_exists('custom_vote_up_icon')) {
function custom_vote_up_icon($voteFaUpImg, $comment, $currentUser) {
return ["fas", "fa-heart", "wc-vote-img-up"];
}
}


   
ReplyQuote
(@skettyd)
Member Customer
Joined: 8 years ago
Posts: 2
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
 

@astghik

I'll test this out - thank you!!!



   
ReplyQuote
Share:
Scroll to top