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

    Hi Tosin,
    You are welcome.
    good to see that you have added title/thumbnail. I would slightly update it to check for the existence of thumbnail image.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25377
    Brajesh Singh on in reply to: BuddyPress Profile Visibility Manager update #48192

    Hi Tom,
    Thank you for your interest.
    We have made the update available to limited number of users. We have no option for profile type based visibility(though I did supply custom code to have this as drop down in profile privacy option).

    We are expecting a public release within next 7 days.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25377
    Brajesh Singh on in reply to: BuddyBlog Groups – email tokens #48190

    Hi Nik,
    Thank you.
    It’s a great idea. Let me add a token. I am working on BuddyBlog Pro & BuddyBlog Groups this week to update the old tickets. I will have the release by this weekend with this.

    Thank you
    Brajesh

    • This reply was modified 3 years, 2 months ago by Brajesh Singh. Reason: corrected plugin names
  • Keymaster
    (BuddyDev Team)
    Posts: 25377

    Hi,
    Welcome to BuddyDev support forums.

    Community builder uses ‘wp_login_url()’ to show the login link in header. Any plugin that allows you to change the login url from wp-login.php is expected to filter on ‘login_url’ and work with the above function.

    If the header link is still pointing to wp-login.php, that means the code/plugin used for renaming/changing the url is not proper and needs to filter to login_url.

    Can you please tell me what are you doing to change the login url?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25377
    Brajesh Singh on in reply to: BuddyPress Clear Notifications #48184

    Hi Carsten,
    I am sorry, I missed your post.

    It should affect all the old notifications.

    Please allow us to re-check and get back to you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25377
    Brajesh Singh on in reply to: Group Tab Creator Pro – User role access #48183

    Hi Francis,
    Thank you for the patience.

    Please upgrade to 1.2.4 and then put this code in your bp-custom.php

    
    
    /**
     * Allow authors or any role above it to create/publish tabs.
     */
    add_filter( 'bpgtc_enable_tabs_admin_ui', function ( $show ) {
    
    	if ( current_user_can( 'publish_posts' ) ) {
    		$show = true;
    	}
    
    	return $show;
    } );
    
    

    That will allow the authors to create tabs.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25377

    Hi,
    We are releasing a major update to this plugin in next 7 -10 working days. That will take care of your issue.

    And you are right about the not being recorded. If any of the role of a user(in case a user has more than one roles) is excluded from recording, they will be excluded. We will put an option to decide your strategy to record or not?

    About your other question:- Visitors preference is only checked if the policy is “Mutual”. In your case, there preference will have no impact if it is not “Mutual”. If you have the strategy set as mutual, their preference will still be accounted(and it is a bug now that I think about it). We will update this behaviour in upcoming release.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25377

    Hi Tosin,
    Please feel free to adapt this code as you please.

    
    
    add_filter( 'bp_activity_create_summary', function ( $summary, $content, $activity, $extracted_media ) {
    
    	if ( 'new_blog_post' !== $activity['type'] ) {
    		return $summary;
    	}
    
    	// recreate summary.
    	$summary = bp_create_excerpt(
    		html_entity_decode( $content ),
    		225,
    		array(
    			'html'              => false,
    			'filter_shortcodes' => true,
    			'strip_tags'        => true,
    			'remove_links'      => true,
    		)
    	);
    
    	$permalink = get_permalink( $activity['secondary_item_id'] );
    
    	return sprintf( "<a href='%s'>{$summary}</a>", esc_url( $permalink ) );
    }, 10, 4 );
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25377
    Brajesh Singh on in reply to: [Resolved] Buddypress register redirect url #48180

    Thank you Iain.
    Please do let me know if you found the issue.


    @teeboy
    ,
    Please avoid posting in others topic if you are not helping them. That makes it difficult for us to provide support.

    Please open a new topic and we may be able to assist. Your partial solution is to look for referrer or add some query variable while redirecting to detect that the redirection was done from registration page.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25377
    Brajesh Singh on in reply to: Group Tab Creator Pro – User role access #48179

    Hi Francis,
    Thank you for the reply and the patience. We will be pushing and update within next 24 hours and I will be writing back.

    Regards
    Brajesh