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: 25494

    Hi Torben,
    Just checked with Community Builder now.

    Is it about groups directory page? If yes, Is you Display as a tab is checked for the group type while creating it?

    It seems to be working for me.
    https://i.imgur.com/euz0ild.png

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Torben,
    I am sorry, I am unable to find it.

    Can you please Visit Customizer->Layout->Global and check the visibility for
    “Right Panel Visibility”

    Is the menu not appearing on a specific post or page? It can happen as you may override the visibility for individual page/post screen.

    Please help me understand the context a bit more and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Mike,
    Thank you.

    The WP Download Manager seems to have a lot of features. They don’t seem to have integration with WooCommerce though.

    Please allow me to check and get back to you about the development of the plugin today.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Branded login support #23545

    Hi Tosin,
    Thank you for reporting about the reset password workflow. We are unable to provide a quick solution on this. It will be improved in our next major update.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Mike,

    I am sorry for the delayed reply.

    Yes, You have found the right document and you are right about creating member type on the main site.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Sorry, Your previous reply was not clear that you wanted code.

    Our own project is scheduled for August, so I have modified the plugin for you. Please download it form the link in my next reply.

    1. You can select in admin the view type top be select/multiselect
    2. It forces people to select atleast 1 group

    I do not guarantee any quality of code as I simply modified the existing plugin. So, It carries the original code from the plugin.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: How to set up a tournament?? #23541

    Hi,
    Thank you for the question.
    I haven’t used any plugin for similar purpose in past, so I am unable to suggest.

    You may want to give a shot to the plugins from this page
    https://wordpress.org/plugins/tags/tournament/

    and see if any of them suits you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Kristian,
    Thank you for the question.

    You may use the following code.

    
    
    /**
     * Restrict access to BuddyPress for non logged users completely.
     */
    function buddydev_restrict_bp_pages() {
    	// If Logged in
    	// Or not on BuddyPress pages
    	// Or it is register/activation page
    	// Do not restrict.
    	if ( is_user_logged_in() || ! is_buddypress() || bp_is_register_page() || bp_is_activation_page() ) {
    		return;
    	}
    
    	bp_core_redirect( wp_login_url() );
    }
    
    add_action( 'bp_template_redirect', 'buddydev_restrict_bp_pages' );
    
    

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Daria,

    Thank you for the topic.

    The restrictions are enforced by PMpro BuddyPress addon and I believe they have forgotten to add support for the member type directory.

    If you want, I can assist with custom code to restrict the member type directory or you can ask the PMPro team to add support for the member type directory restrictions.

    Regards
    Brajesh