Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

  • Vignesh M
    Participant

    @vignesh-m

    yeah i know but it asks API key when i was get API key means it asks premium


    Vignesh M
    Participant

    @vignesh-m

    Hi @dwsowash wanguard plugin is premium or free??? because it asks API key???


    Vignesh M
    Participant

    @vignesh-m

    Thank You ! i have an another doubt how can i show bbpress forum counts,topic counts,replies for individual user without login in buddypress members page below username.


    Vignesh M
    Participant

    @vignesh-m

    hi there !! i want to show specific user for forums count, replies counts, and topic counts in this page http://test06.aachicargo.com/members/ without logged on

    Anyone kindly help me….

    Thanks in Advance


    Vignesh M
    Participant

    @vignesh-m

    i found and solve the issue on my ownway.. This is the code for display posts count for individual users(members).. Hope it works….

    <?php
    $user_id = bp_get_member_user_id();
    $query = new WP_Query( ‘author=’ . $user_id );

    if ( $query->have_posts() ) {
    while ( $query->have_posts() ) {
    $query->the_post();
    //display title
    /*the_title();*/
    //display content
    /*the_title();*/

    }
    }
    echo ‘Number of posts published by user: ‘ . count_user_posts($user_id);
    //reset for next member
    wp_reset_postdata();
    ?>


    Vignesh M
    Participant

    @vignesh-m

    i want to show blog counts for everyuser below it’s name in member page


    Vignesh M
    Participant

    @vignesh-m

    Thank you i used buddyblog plugin for create and publish the posts

    Is this possible to view in this page http://test06.aachicargo.com/members/


    Vignesh M
    Participant

    @vignesh-m

    ok..

Viewing 8 replies - 1 through 8 (of 8 total)
Skip to toolbar