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

    Hi Sigfrido,
    Thank you for the patience.

    Please upgrade to 1.4.0 and let me know if it works or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25348
    Brajesh Singh on in reply to: Branded Login for BuddyPress not working! #28076

    Hi Eli,
    Thank you for reporting.

    We haven’t tested it with Divi. Please allow me to check and get back to you in couple of hours. It is most probably a template layout issue.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25348

    Hi Linda,
    Please see
    https://buddydev.com/docs/buddypress-guides/what-is-bp-custom-php/

    PS:- I am putting it as an option in the plugin settings itself over the weekend.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25348

    You are welcome.
    I am glad it worked.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25348

    Hi Mical,
    Thank you.

    yes, it is possible but a better option is to disable recording for the other member type.

    
    
    /**
     * Disable recording of visits of a particular member type.
     */
    add_filter( 'visitor_is_visit_recordable', function ( $is_enabled, $user_id ) {
    
    	$non_recordable_types = 'teacher';// member type.
    	if ( bp_has_member_type( $user_id, $non_recordable_types ) ) {
    		$is_enabled = false;
    	}
    
    	return $is_enabled;
    }, 10, 2 );
    
    

    Regards
    Brajesh

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

    Thank you.
    I appreciate their feedback.

    I will post an update within couple of hours.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25348

    Hi David,
    Thank you.

    1. Clicking icon to close will still work. It was not obvious for many people though. We haven’t changed that at all.

    2. I am sorry, the opening/closing has nothing to do with ajax. It seems some javascript events might not be bound(I need to verify this).

    3. I beg to differ about the activity plus, can you please tell me what is better experience there? I took over it as it was needed by the people. I believe it has very limited functionality(allowing to upload to activity).

    For MediaPress, activity upload is just one of the many things. MediaPress can be used without BuddyPress, or with BuddyPress but without activity upload too.
    It is aimed at managing collection of media. Activity Plus has 1 goal and that is to allow uploading/adding media in the activity stream(can’t handle video/audio upload) and there ic no concept of managing media.

    These two serve to very different audiences.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25348

    Hi Enrico,
    Welcome to BuddyDev.

    Thank you for the feedback.

    It is difficult to standardize this behaviour as all themes have their own way of implementing the uploads and there is no common way to subscribe to the uploaded event using javascript(it is possible for Nouveu template pack).

    So, I am afraid, I do not see a proper solution.

    May I suggest requesting your theme developer to reload the page after successful upload, that will fix it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25348

    Hi ,
    Please try putting this in your bp-custom.php

    
    
    define( 'BPFB_LINKS_TARGET', 'external');
    
    

    Let me know if that works or not. I might have to delay the test a bit in the plugin if it does not work.

    Regards
    Brajesh