BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25206

    Hi Richard,
    Thank you for the reply.

    Even if the plugin was simply deactivated, It can not do anything to your registration page after that. Please check if you have some kind javascript caching enabled on the site. Try to clear the cache. I haven’t see anything like this earlier.

    Also, I am sorry, I am not aware of any such plugin for BuddyBoss.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25206

    Hi Fran,
    You are welcome!

    I am glad the issue is resolved! Have a great time building your community.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25206

    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: 25206
    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: 25206
    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 2 years, 9 months ago by Brajesh Singh. Reason: corrected plugin names
  • Keymaster
    (BuddyDev Team)
    Posts: 25206

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

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

    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