BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: [Resolved] MediaPress #1659

    Hi Marc,
    I am glad it is fine now.

    Please do note that there are continuous updates on github but I haven’t bumped version. Consider that beta 1 as dev branch. So, It is always good to check for changelog when updating instead of relaying on the version number for MediaPress.

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: Trying to improve the Group home page #1656

    Hi George,
    Thank you. I am glad we are progressing towards the result.

    Try looking for this line in your custom loop

    
    
    bbp_has_topics ()
    
    

    and we need to modify it to

    
    
    $forum_ids    = bbp_get_group_forum_ids( bp_get_current_group_id() );
    
    if ( !empty( $forum_ids ) ) {
    	$forum_id = (int) is_array( $forum_ids ) ? $forum_ids[0] : $forum_ids;
    }
    
    bbp_has_topics ( array( 'post_parent' => $forum_id ) );
    
    

    That will fetch the topics for relevant groups.

    You will also need to check if the forum_id is empty then to avoid showing the loop.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: Re:bp-list-users-in-dir-with-role #1653

    Hi AJ,
    Try clearing cache and then hopefully this will work. Please PM me the details via my profile here
    https://buddydev.com/members/sbrajesh/

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: BP Ajax registration Plugin help #1651

    Hi Samir,
    Please ask your developer to look at the bp-ajax-registration-shortcode plugin to see how it can be used with normal form.

    I had a look at the home page form and It does not contains the required code necessary to show errors properly. So, I assume, they did it on purpose and your developer will need to account for that.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: BP Ajax registration Plugin help #1650

    Hi Samir,
    1. To get the popup modal on register link

    In header.php, you will need to make following change

    
    <li class="header-register-button"><a href="#" data-reveal-id="register_panel" class="tiny button radius"><i class="icon-group hide-for-medium-down"></i> <?php _e("SIGN UP", 'kleo_framework'); ?></a></li>
    						
    

    to

    
    <li class="header-register-button bp-signup"><a href="#"  class="tiny button radius"><i class="icon-group hide-for-medium-down"></i> <?php _e("SIGN UP", 'kleo_framework'); ?></a></li>
    						
    

    That will disable the default popup registration form and use the one included with this plugin.

    The form can be customized in the way you want. Just copy ajax-register-form.php from the plugin to your theme and modify it as you need to match the look & feel.

    I am looking at someway to get the home page main registration form working with Ajax registration. Will update here in an hour what I find.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: bp-list-users-in-dir-with-role #1649

    Hi AZ,
    Welcome to BuddyDev.

    Can you please point me to a working installation to check the things? It should not be very difficult to integrate these code with profile search.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: Activity Stream Style #1648

    Hi Joshua,
    Your activity page is inaccessible to me so can not say much. The code was a guideline for bp-default theme and with small modifications can be used with any theme.

    Can you please check if the staging site is up? Also, If I can get a temporary account, that will be very helpful.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057

    Hi Jay,
    It is most probably happening because blogs were not recorded.

    Please visit NetworkAdmin->Tools->BuddyPress and check “Repopulate blogs records” and then click repair items.

    See if that works or not?

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: [Resolved] How to Create a Custom Page for Groups? #1640

    Thank you. Will post an update tomorrow.

    Regards
    Brajesh