Replies
- Brajesh Singh on January 31, 2023 at 12:03 am in reply to: [Resolved] How can I completely remove data after deleting plugin? (Conditional fields BP) #48202
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 - Brajesh Singh on January 30, 2023 at 4:08 pm in reply to: [Resolved] How To Change Login Link In Header Menu Of Community Builder Theme? #48195
Hi Fran,
You are welcome!I am glad the issue is resolved! Have a great time building your community.
Regards
Brajesh - Brajesh Singh on January 30, 2023 at 4:02 pm in reply to: [Resolved] Turn activity excerpt into clickable link #48193
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 - Brajesh Singh on January 30, 2023 at 4:01 pm 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 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
- This reply was modified 2 years, 9 months ago by
- Brajesh Singh on January 30, 2023 at 3:54 pm in reply to: [Resolved] How To Change Login Link In Header Menu Of Community Builder Theme? #48188
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 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- Brajesh Singh on January 30, 2023 at 1:00 am 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 - Brajesh Singh on January 30, 2023 at 12:46 am in reply to: How to enable your visitors plugin for our vip members only #48182
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 - Brajesh Singh on January 30, 2023 at 12:29 am in reply to: [Resolved] Turn activity excerpt into clickable link #48181
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