Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25403
    Brajesh Singh on in reply to: BuddyPress Private Message Rate Limiter #17179

    Hi Carsten,
    BuddyPress does not support reply by email.

    Are you using any 3rd party plugin to achieve it?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25403

    Hi Goyelle,
    I have checked now and it is the BP Nouveau template pack is the issue. They have changed the css classes were used.

    If you are using the BP Nouveau template pack, Please copy wp-content/plugins/mediapress/templates/mediapress/default/buddypress/groups/home.php to yourtheme/mediaress/default/buddypress/groups/home.php and chage this

    
    
    <div role="navigation" id="subnav" class="item-list-tabs no-ajax mpp-group-nav">
    	<ul>
    		<?php do_action( 'mpp_group_nav' ); ?>
    	</ul>
    </div>
    

    to

    
    <div role="navigation" id="subnav" class="item-list-tabs bp-navs bp-subnavs no-ajax group-subnav no-ajax mpp-group-nav">
    	<ul>
    		<?php do_action( 'mpp_group_nav' ); ?>
    	</ul>
    </div>
    
    

    That will fix it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25403
    Brajesh Singh on in reply to: To/From Values custom field issue #17174

    Hi Carsten,
    Thank you.

    The author of the card plugin is right about data storage. It is handled by BuddyPress and not that plugin. They are simply displaying it in the form of a card.

    I will be looking into their plugin today and see if there is any issue.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25403
    Brajesh Singh on in reply to: To/From Values custom field issue #17172

    That’s strange. I am not sure what is happening there but I will try to recreate it tonight.

    Has it started after 1.0.5 or was it happening earlier too? I haven’t changed the way it is stored, that’s why I am asking about it.

    Thank you.
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25403
    Brajesh Singh on in reply to: To/From Values custom field issue #17170

    Hi Carsten,
    Thank you.

    It is a side effect of using xprofile_get_field_data(), I will be assisting with the cards plugin and getting this right in next 1-2 days.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25403
    Brajesh Singh on in reply to: mediapress upload video in sitewide style youtube #17169

    Hi Paolo,

    Welcome back.

    If you can summarize the current requirement from us(what needs to be done), I can provide an estimate or assistance as needed.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25403
    Brajesh Singh on in reply to: [Resolved] Buddypress Member Type Pro in Profilfield #17168

    Hi,
    Welcome to BuddyDev.

    Please visit Dashboard->User->Profile Fields and Click on the member type field to edit it.

    On the Edit screen, In the rightside box, There is an option for “Autolink”. Please select “Disable” and save.

    That should fix it. Please let me know if it works for you or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25403
    Brajesh Singh on in reply to: [Resolved] Buddypress Unread Message Count #17161

    Hi Mwale,

    1. Please make sure you have BuddyPress Messages component enable where you are trying to use the function.

    2. For fetching current user’s count, you can use

    
    <a id="user-messages" href="/messages/" class="msg">Messages <span class="alert_count"><?php if( class_exists( 'Buddypress' ) ) {echo messages_get_unread_count( get_current_user_id() );} ?></span></a>
    
    

    I do suggest that instead of checking for BuddyPress class, you might want to check function_exists for the above function. That way, if messages component is disabled, it won’t cause fatal error.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25403

    Hi Todd,
    Welcome to BuddyDev.

    Yes, You can do that with BuddyBlog but there are a few things about BuddyPress setup that you should know:-

    1. When BuddyPress is network active, The Profile page(where all the user menus are) are only accessible on the main site

    2. You can change the above behaviour in 2 ways:-
    A). You can define BP_ROOT_BLOG constant with a blog ID and that specific blog will act as you main BuddyPress network

    B) Or you can enable multi blog mode( define BP_ENABLE_MULTIBLOG as true ) and all the blogs on your multisite network can have the profile/all other pages(still sharing the global tables).

    In your case, if you want to limit posting to a sub site, you will need the BuddyBlog menu accessible from that sub site only. To achieve that, you will need the profile on that sub site(using either of the above 2 method).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25403

    You are welcome.
    I am lad that I was able to help 🙂

    Regards
    Brajesh