Forum Replies Created
- 
		
			
yeah i know but it asks API key when i was get API key means it asks premium
Hi @dwsowash wanguard plugin is premium or free??? because it asks API key???
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.
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
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();
?>i want to show blog counts for everyuser below it’s name in member page
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/
ok..