This topic has 5 replies, 2 voices, and was last updated 8 years by Radu.

  • Author
  • #114349
     adeon
    Participant

    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

    #114495
     Radu
    Moderator

    Hi,

    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 solution
    #114792
     adeon
    Participant

    I 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.

    #114888
     Radu
    Moderator

    I understand please paste this function to your child theme functions.php ( wp-content/themes/kleo-child/functions.php )

    COPY CODE
    function 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 solution
    #125012
     adeon
    Participant

    Hi Radu,

    Thanks for the feedback, and that worked.. thanks very much..

    Regards

    Ad

    #125054
     Radu
    Moderator

    Hi,

    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
Viewing 6 posts - 1 through 6 (of 6 total)

The forum ‘Bugs & Issues’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?