-
Author
-
April 4, 2016 at 04:45 #114349adeonParticipant
Hi,
In the Demo data of the front page it has the Members Online Animated Numbers. I have found the shortcode for total members.
[kleo_total_members]
Are there actual shortcodes for Number of Users Online? # Of Groups, # of Topics.. # of Posts etc?
Thanks
Ad
April 4, 2016 at 20:06 #114495RaduModeratorHi,
For the online members just search in visual composer for “Member Statistics” then you will have to configure fields for women and men or your criteria..
For the bbpress you can use these shortcodes https://codex.bbpress.org/features/shortcodes/
For the groups count i’ve searched on google and i found this plugin, you will have to test it https://bp-tricks.com/featured/buddypress-shortcodes-plugin/
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionApril 6, 2016 at 08:24 #114792adeonParticipantI don’t have fields for Men or Women.. I simply want to just show the number of Members Online..
I noticed the Member Statistics has a check box for Online, but without the fields its dosnt work
The “Member Count” has no options. Would be good to include the same ONLINE checkbox.
April 6, 2016 at 20:05 #114888RaduModeratorI understand please paste this function to your child theme functions.php ( wp-content/themes/kleo-child/functions.php )
COPY CODEfunction sq7support_get_online_members() { $i = 0; if ( bp_has_members( ‘user_id=0&type=online&per_page=999&populate_extras=0’ ) ) : while ( bp_members() ) : bp_the_member(); $i++; endwhile; endif; return $i; } add_shortcode('kleo_get_online_members','sq7support_get_online_members');
Then add this shortcode in your page kleo_get_online_members
Let me know
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionJune 9, 2016 at 13:53 #125012adeonParticipantHi Radu,
Thanks for the feedback, and that worked.. thanks very much..
Regards
Ad
June 9, 2016 at 18:10 #125054RaduModeratorHi,
You’re welcome
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘Bugs & Issues’ is closed to new topics and replies.