Skip to content

Instantly share code, notes, and snippets.

@max-kk
Last active December 2, 2019 08:10
Show Gist options
  • Save max-kk/79cf6297f8babc62f7548cb08a1b44d3 to your computer and use it in GitHub Desktop.
Save max-kk/79cf6297f8babc62f7548cb08a1b44d3 to your computer and use it in GitHub Desktop.
FV hide 20+ some votes
<?php
// Copy after
add_filter("fv/competitor/get_votes", function($result, $competitor, $contest_voting_type, $contest) {
if ( $competitor->votes_count > 20 && ! current_user_can("manage_options") ) {
return "20+";
}
return $result;
}, 10, 4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment