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

    Hi Propertytips,
    Thank you for using the plugin. I am in the process of pushing an update tomorrow and will add the option in the dashboard settings to let you choose where you want to link. Normal permalink or show it on group.

    For the single page:- Sorry, There are no special hooks on single.php. If your theme is adding it, it is theme specific and there are no standards about it.
    We can add blog category specific actions but for most of the themes, the template will need to change.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25482
    Brajesh Singh on in reply to: Registering taxonomies for BP Profile Search? #19953

    Hi Kir,
    I have used Andrea’s excellent guide to add support for some of our field types in past.

    There are issues with using Multi select taxonomy or post type. We store the values in serialised form(and ids only) . It is not suitable for search. That’s why we haven’t added compatibility.

    You will find that most of the other field types offered by us(birthdate, datepicker, color, email, range, slider, decimal) are compatible with Profile search.

    I am sorry for the inconvenience. My suggestion will be to use normal multi select field for the same.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25482
    Brajesh Singh on in reply to: Buddy Press Form #19951

    Hi Sir,

    Sorry about the video. Will do it today.

    For the weak password: – It does not prevent users from registering. BuddyPress simply shows the message but does not stop registration. Are you sure you are not using some other code/plugin to enforce strong password?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25482
    Brajesh Singh on in reply to: [Resolved] Exclude admin from members directory #19950

    Thank you for confirming.

  • Keymaster
    (BuddyDev Team)
    Posts: 25482
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25482
    Brajesh Singh on in reply to: Bp-community activity on profile – how to? #19948

    Hi Kir,
    Thank you for using the plugin.

    For the label(All Activity), you should translate the plugin.

    For making it default, you can use the following code

    
    
    /**
     * Set community activity as landing for activity
     */
    function bp_custom_community_activity_as_default_landing() {
    	if ( ! bp_is_my_profile() ) {
    		return;
    	}
    
    	bp_core_new_nav_default( array(
    		'parent_slug'     => 'activity',
    		'subnav_slug'     => BPCOM_ACTIVITY_SLUG,
    		'screen_function' => 'bp_community_activity_screen',
    	) );
    }
    add_action( 'bp_activity_setup_nav', 'bp_custom_community_activity_as_default_landing', 15 );
    
    

    Regards
    Brajesh

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

    Hi Carsten,
    It is quite possible that you don’t have any unread message.

    Please try sending a message to one account and then check it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25482
    Brajesh Singh on in reply to: Mediapress Lightbox Comment Notifications #19934

    Hi Nikki,
    Thank you for posting.
    Closing it in favour of the other topic.
    https://buddydev.com/support/forums/topic/mediapress-does-not-create-notifications-when-commenting/

    Will be posting there.

    Regards
    Brajesh

    • This reply was modified 7 years, 7 months ago by Brajesh Singh. Reason: fixed the link