BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 24706
    Brajesh Singh on in reply to: BuddyPress Multi Network Setup #539

    BuddyPress should be network activated. I haven’t tested the per site configuration with multisite & bp multi network, can’t say much about that.

  • Keymaster
    (BuddyDev Team)
    Posts: 24706
    Brajesh Singh on in reply to: BuddyPress Multi Network Setup #537

    Hi Milo,
    Sorry about the confusion.

    1. If you want to have a separate domain for the second site the first thing you need to do is use a Multisite Domain mapping plugin and configure the mapping. Check if it works properly by visiting the second domain. Most of the domain mapping plugin will also give you the option to force redirect to your new domain when accessed directly(the sub site). So, That should fix your two instance issue.

    2. once you are done with that, just enable Multisite network plugin and activate BuddyPress. Visiting the dashboard/settings will lead to make it work as earlier.

    What I am trying to say is the only thing you need to think is about configuring Domain mapping plugin to work properly(setting up DNS etc). This multi network plugin does not have any special requirement or any issue whether you use domain mapping or not.

  • Keymaster
    (BuddyDev Team)
    Posts: 24706
    Brajesh Singh on in reply to: BuddyPress Multi Network Setup #534

    Hi Milo,
    With BuddyPress Multi network there is no specific settings for domain mapping(It does not need ). If you configure domain mapping properly, It will work out of the box.

    The concept of domain mapping on multisite is that you have the same database but instead of using sub domain/directory style child blogs, you map these child to Independent domains.

    Please check and make sure that Multisite domain mapping is working properly and then you can try the multi network plugin.

  • Keymaster
    (BuddyDev Team)
    Posts: 24706
    Brajesh Singh on in reply to: [Resolved] Prevent subscribers from uploading images? #531

    Hi A,
    Apologies for the delayed reply.
    Please put this in your bp-custom.php

    
    add_filter( 'mpp_user_can_create_gallery', 'mpp_custom_prevent_gallery_creation', 11, 3 );
    
    function mpp_custom_prevent_gallery_creation( $can_do, $component, $component_id ) {
    	
    	return buddydev_is_above_subscriber();
    }
    
    add_filter( 'mpp_user_can_upload', 'mpp_custom_prevent_gallery_upload', 11, 4 );
    
    function mpp_custom_prevent_gallery_upload( $can_do, $component, $component_id, $gallery ) {
    	
    	return buddydev_is_above_subscriber();
    }
    

    That will do it but the Ui will be still visible.

  • Keymaster
    (BuddyDev Team)
    Posts: 24706
    Brajesh Singh on in reply to: BP Magic Sidebar login #530

    Hi Jay,
    My apologies for the delayed reply.

    Please open the sidebar.php and look for this

    
    <input type="hidden" name="testcookie" value="1" />
    

    should be on line 67. Please remove that and it should be fixed.

  • Keymaster
    (BuddyDev Team)
    Posts: 24706
    Brajesh Singh on in reply to: [Resolved] Member type fields #529

    Good that you found it. Apologies for not being able to reply in time. Closing.

  • Keymaster
    (BuddyDev Team)
    Posts: 24706
    Brajesh Singh on in reply to: [Resolved] Anonymous Plugin / Extension Update #528

    Updating this as resolved.

  • Keymaster
    (BuddyDev Team)
    Posts: 24706
    Brajesh Singh on in reply to: [Resolved] Anonymous Plugin / Extension Update #527

    I am sorry I did not understand the question but glad that it is fixed.

    Yes, a direct sql queries will not be caught. Only the lists using bp_has_Activity will be filtered( that is used by all the places you see it in BuddyPress).

  • Keymaster
    (BuddyDev Team)
    Posts: 24706

    Hi Rojo,

    I am sorry about the delay. It will take me some time( say a week) before I work on the front end post form plugin. That is the plugin that needs update to make it work. The simple step is create an post when a user visits New Post screen and update that post with the actual content as the use saves.

    I am stuck with a project of mine and not able to devote my time on other things. If you can wait for a week, I will get this in. If you do it yourself, please do send a pull request on github.

  • Keymaster
    (BuddyDev Team)
    Posts: 24706
    Brajesh Singh on in reply to: Stealth Mode Issue #514

    Hi,
    Welcome to the BuddyDev forums.
    Can you please clarify me about this

    When in stealth mode it is also hiding me from logging in

    I am sorry but I could not understand that. Is it stopping you from login in to you dashboard?