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: 25285
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25285

    Hi Shelley,
    Thank you for pointing me to the site. I will post in an hour with details(On how to use with Divi Builder).

    I am sorry that you were not able to reply on original topic. I am not sure why you were not able to post there, I checked and It is still open(I am going to close that and point here).

    In future, if anything like this happens, please drop me a mail(my email is in next private reply).

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25285
    Brajesh Singh on in reply to: Buddypress Confirm action 1.0.2. No longer working #12411

    I was using the github version. I am going to give a short to the version from our site and report back again. It is a possibility that these two versions may not be same(I doubt that but need to check for sue).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25285
    Brajesh Singh on in reply to: Buddypress ajax register , custom url #12410

    Hi Julia,
    That _auto.js is not part of our plugin. It is most probably generated by some javascript minifier plugin that you are using.

    1. I just had a look at the screenshot attached and if you see the code is from some WooCommerce related plugin in that file and not from ajax register. I can assure you that we are not adding it and you can verify the same by looking at the code.

    2. The size of the plugin is 38.8KB zipped since it includes a lightbox and css for lightbox. The lightbox is Magnific Popup.

    3. Auto activation is part of experience,. It emulates other social networks where a user gets logged in as soon s they create account. I can post a code to disable auto activation. That will disable auto login too.

    4. We are not adding any specific style. Very minimal and only layout structure. It will not inherit from BuddyPress as BuddyPress css is mostly namespanced under #buddypress but it will inherit from your theme’s default style for form/buttons.

    5. There is no security risk. If you think that you can check the name of the plugin directory in the browser, that is not a security risk. It is needed by all plugins who want to add some asset(js/css/images). I will suggest opening View Source and you will see your theme directory/plugins directory etc. It’s not a security risk. Non sanitized, improperly written coders are security risk.

    Hope that clarifies.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25285
    Brajesh Singh on in reply to: [Resolved] divi Builder vs. Maximus #12409

    Thank you. I will be posting about it here and on the other topic(spacing issue) in an hour after testing the theme with the Divi Builder.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25285
    Brajesh Singh on in reply to: [Resolved] Register and Login buttons #12408
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25285
    Brajesh Singh on in reply to: [Resolved] BP Featured Members Avatar Size #12407

    Thank you for the patience Nick. We will have it by 24th December(Mot probably way before that).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25285
    Brajesh Singh on in reply to: [Resolved] Creating Groups #12406

    Hi Shelley,
    The group creation is provided by BuddyPress, That’s why we did not add documentation.

    Your posting ha given me the idea that providing this type of documentation will be nice and will do.

    For now,
    1. Please visit Dashboard->Settings->BuddyPress->Components. Please Make sure “groups” is enabled
    2. Please visit Dashboard->Settings->BuddyPress->Settings and make sure that group creation is enabled.
    3. Please visit Dashboard->Settings->BuddyPress->pages and make sure that you have selected a page for Group.

    If all of these are enabled, we are good.

    Now, you can create a group by Visiting group Directory and clicking on “Create group” button. The Create Group button is also accessible from the Profile dropdown menu and the right panel accounts menu.

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25285
    Brajesh Singh on in reply to: [Resolved] BP Profile vis questions #12405

    Hi Matt,
    Thank you for purchasing the plugin.

    1. That is added by BuddyPress.
    We can use the following code to remove it from settings as well as adminbar

    
    /**
     * Remove the 'Profile Visibility' added by BuddyPress in settings.
     */
    function buddydev_disable_bp_profile_visibility_settings() {
        bp_core_remove_subnav_item('settings', 'profile');
    }
    add_action( 'bp_setup_nav', 'buddydev_disable_bp_profile_visibility_settings', 1001 );
    
    /**
     * Remove the Settings->profile from adminbar menu
     */
    function buddydev_disable_bp_profile_visibility_adminbar() {
        global $wp_admin_bar;
    
    	if ( ! is_admin_bar_showing() || ! is_object( $wp_admin_bar ) ) {
    		return;
    	}
    
    	$wp_admin_bar->remove_node('my-account-settings-profile');
    
    }
    add_action( 'wp_before_admin_bar_render', 'buddydev_disable_bp_profile_visibility_adminbar', 1001 );
    
    

    2. I am not able to understand it. Can you please link me to a screenshot.

    3. Please use the following code

    
    
    /**
     * Filter Privacy option dropdown for BP profile Visibility.
     *
     * @param $privacy_options
     *
     * @return array
     */
    function buddydev_customize_profile_privacy_list( $privacy_options ) {
    	unset( $privacy_options['public'] );
    	unset( $privacy_options['groups'] );
    	return $privacy_options;
    }
    // Yes, the spelling is incorrect for this hook. 'visiility' should be 'visibility'. It is still there due to legacy code.
    add_filter( 'bp_profile_visibility_visiility_levels', 'buddydev_customize_profile_privacy_list' );
    
    

    I have tested by putting it in bp-custom.php.
    Hope that helps.

    Regards
    Brajesh

    • This reply was modified 8 years, 1 month ago by Brajesh Singh. Reason: Fix the bug in code specified in step 3
  • Keymaster
    (BuddyDev Team)
    Posts: 25285

    Hi Shelley,
    can you please point me to the page or provide a link to a screenshot.

    Also, are you using the page builder Layout template from the Page Template options?

    Thank you
    Brajesh