-
Author
-
February 1, 2016 at 14:13 #101528wilhalphotoParticipant
Hi,
- How can I reset # of likes? (kleo-love)
- I’d like to only allow registered user to vote/like, how can i do that?
thanks a bunch!
-willFebruary 2, 2016 at 17:54 #101758RaduModeratorHi,
You can hide the like/love functionality for logged out users by using this function
COPY CODEfunction AllowKleoLikesToLoggedInUsers () { global $kleo_item_likes; if(!is_user_logged_in()) { remove_action('publish_post', array($kleo_item_likes, 'setup_likes')); remove_action('kleo_post_footer', array($kleo_item_likes, 'show_likes')); remove_action('kleo_show_love', array($kleo_item_likes, 'show_likes')); remove_action('wp_ajax_item-likes', array($kleo_item_likes, 'ajax_callback')); remove_action('wp_ajax_nopriv_item-likes', array($kleo_item_likes, 'ajax_callback')); } } add_action('after_setup_theme', 'AllowKleoLikesToLoggedInUsers', 99);
The function needs to be added to wp-content/themes/kleo-child/functions.php
NOTE : Child theme needs to be installed and activated
You can reset the post likes via phpmyadmin with this query
COPY CODEwp_postmeta
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionFebruary 8, 2016 at 18:33 #102692wilhalphotoParticipantThanks for the solution and the quick reply!
February 8, 2016 at 19:26 #102719RaduModeratorGreat,
Have a nice week
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.