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: 25337
    Brajesh Singh on in reply to: Central Login/Registration Help #25300
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: Post Reply Moderation #25299

    Hi Shana,
    Welcome to BuddyDev.

    Is it about WordPress post moderation or BuddyPress Activity?

    If it is about WordPress post reply, you can enable it from Dashboard->settings->Discussion section(it is part of WordPress core).

    If you need it for BuddyPress, Please do let me know.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: Central Login/Registration Help #25293

    Hi Joshua,
    Please make sure you have not copied for the notification mail and have copied it form the above reply.

    The code in notification mail gets entity encoded and will cause issue.

    Also, if you copy from above and it is still causing issue, Please check error log and post me.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337

    Hi Eric,
    In order to let browser open links in new tab automatically, we need to set the ‘target’ attribute. The problem is we do not have control over that. We register our items and BuddyPress generates the links.

    That’s why we can not add the open in new tab.

    The work around is using javascript. Which is not good enough to be part of the core plugin.

    I or @ravisharma will share some code to open tabs in new window in next 2 days.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: Buddycommerce sync fields #25291

    Hi Tosin,
    Thank you for the suggestion. We will add sync within next 2 releases.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: Uploading Pic on Activity not working anymore #25290

    Hi Daniel,
    I am sorry for the inconvenience.

    Can you please link me to the site with a guest account to check the upload?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: Central Login/Registration Help #25286

    Hi,
    You may want to put a code like this in a plugin and network activate

    
    
    add_filter( 'login_url', function ( $login_url, $redirect, $force_reauth ) {
    	$login_url = 'https://login.tidesofwar.net';
    
    	$redirect = site_url( $_SERVER['REQUEST_URI'] );
    
    	$login_url = add_query_arg( 'redirect_to', urlencode( $redirect ), $login_url );
    
    	if ( $force_reauth ) {
    		$login_url = add_query_arg( 'reauth', '1', $login_url );
    	}
    
    	return $login_url;
    }, 3 );
    

    I haven’t tested it but this or slightly modified version of it should work for login.

    Please let me know how it goes.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: Buddypress CRM #25283

    Hi Cap,
    Thank you for the question.

    We do not have a plugin for this purpose. MediaPress caters to a different use case.

    In my opinion going with either BuddyDrive or the first plugin from the above links(Multiverso – Advanced File Sharing Plugin, which seems to have a shortcode for front end upload) will help you.

    BuddyDrive lacks support bu have integration with BuddyPress, the other has support but no explicit BuddyPress integration.

    I will suggest that you try BuddyDrive first and if it does not suit you, can try the other plugin.

    Regards
    Brajesh

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

    Hi Eric,
    Opening a link in new tab needs the target attribute to be added on the link. The tab links(main tab) are managed by BuddyPress and we can not add the target attribute.

    The only way to do it will be to use js to modify the links.

    For sub navs in group, we create the links, so we can provide a way to do it.

    Please let me know if you want to go with js and I will assist. It will need modification in your theme’s js.

    Regards
    Brajesh