• Resolved ganarukanaru

    (@ganarukanaru)


    If can quickly find topics with a lot of votes.
    If can also voting there.( in topic )
    Do not move when voting is closed. .

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author natekinkead

    (@natekinkead)

    Jonny, it sounds like this is a feature request that is getting a bit outside my intended scope for this simple plugin that I built and maintain in my free time.

    If you would like to have me work on this feature as well as the others you have requested in these forums, perhaps you would like to hire me as a freelancer?

    If you’re interested, please reach out to me here to so we can start an email conversation… https://wpforthewin.com/contact/

    Thanks!

    Olá, fiz essa altera??o, foi bem simples, segue o código, basta inserir no functions.php

    *Hello, I made this change, it was very simple, follows the code, just insert in functions.php

    
    add_action ( 'bbp_theme_before_topic_title' , 'bavotasan_resolved_topics' ); function bavotasan_resolved_topics () { 
        $topic_id = bbp_get_topic_id ();
        $score = (int) get_post_meta($topic_id, 'bbp_voting_score', true);
        if ($score != 0) { 
            echo $score;
        } 
    }  
    
    Plugin Author natekinkead

    (@natekinkead)

    Thank you, @driftweb, for contributing that solution for others to use!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘show total voting count include topic list index’ is closed to new replies.