Problem with sorting
-
Hi,
Over a year ago you gave me a piece of code to sort both the topic itself and its replies when someone opens a topic.Now when I open a topic you cannot vote on the topic itself against the replies, you can only vote on the replies.
If I turn on vote on topics the voting buttons show up on the list of topics as well which is not right for me. If you look at my site it would be voting for airports.
Hope that makes sense
Regards
Clive/*********************/
// Override to sort topics and replies by votes
add_filter(‘bbp_has_replies_query’, ‘sort_bbpress_topics_and_replies_by_votes’, 11);
function sort_bbpress_topics_and_replies_by_votes( $args = array() ) {
if(!apply_filters(‘sort_bbpress_replies_by_votes’, false)) return $args;
$bbPress_post_id = get_the_ID();
$bbPress_post_type = get_post_type($bbPress_post_id);
if( $bbPress_post_type == bbp_get_topic_post_type() ){
$args[‘orderby’] = [
‘meta_value_num’ => ‘DESC’
];
}
return $args;
}
/* This sorts the replies by votes */
add_filter(‘sort_bbpress_replies_by_votes’, ‘__return_true’);
/********************************/The page I need help with: [log in to see the link]
- The topic ‘Problem with sorting’ is closed to new replies.