Replies
- Brajesh Singh on December 1, 2022 at 9:49 am in reply to: [Resolved] Buddyblog auto update permalinks #47530
Hi Tosin,
BuddyBlog and BuddyBlog Pro does not affect any of your permalink. It does not use any rewrite.We do filter on single posts url to make it available on a user/group page if that settings is enabled. so, I don’t see any correlation with any plugin changing permalink here.
Regards
Brajesh Hi Tosin,
BuddyBlog does not do anything special. Our post and attachments are normal WordPress post and attachment. It seems that plugin might have some setting or way to avoid it.We will be looking into that and letting you know the reason(earlier we had issue as parent id was not set properly but that has been fixed from our side).
Regards
Brajesh- Brajesh Singh on November 30, 2022 at 5:53 am in reply to: change in post permalink structure #47511
Hi Tosin,
I am not seeing any reason for the BP changes to cause it.
Also, I am not sure why do you need the last snippet.Regards
Brajesh - Brajesh Singh on November 30, 2022 at 5:25 am in reply to: [Resolved] User activity search field #47510This reply has been marked as private.
Hi Tosin,
I am sorry for the inconvenience.
i am not seeing any issue with the code. @ravisharma or I will be validating your code today and getting back to you.In the meantime, Is there any chance that you are using a plugin that hooks to login process or is there some kind of cache active?
Thank you
Brajesh- Brajesh Singh on November 30, 2022 at 5:16 am in reply to: [Resolved] User activity search field #47508This reply has been marked as private.
- Brajesh Singh on November 30, 2022 at 5:01 am in reply to: [Resolved] Change permission on privacy of xProfile Feilds, Tag type xProfile Fields #47507
Hi John,
Thank you for the update.In that case I will suggest contacting their support to see if there is any conflict.
Regards
Brajesh - Brajesh Singh on November 30, 2022 at 5:00 am in reply to: [Resolved] BudyPress Username Changer #47506
Hi Alex,
I had a look at the code.we are already updating the nicename
https://github.com/sbrajesh/bp-username-changer/blob/master/bp-change-username.php#L157
and here is the hook you are loooking for
https://github.com/sbrajesh/bp-username-changer/blob/master/bp-change-username.php#L200
Hope that helps.
Regards
Brajesh - Brajesh Singh on November 30, 2022 at 4:37 am in reply to: [Resolved] BuddyBlog Pro : How to change Editor’s basic font and size. #47505
Hi Fredrick,
We are using tinymce and it will need some custom code.1. Please create a file bbl-editor in your child theme/theme and put some css code there like the following
body { font-size: 30px; color: green; }2. In your theme/child theme’s functions.php
// Add Tinymce css customization on front end. add_filter( 'mce_css', function ( $css ) { if ( is_admin() ) { return $css; } $css .= ',' . get_stylesheet_directory_uri() . '/bbl-editor.css'; return $css; } );That will allow you to customize as you need.
PS:- This will have effect on all of the tinymce instances on front end(in case you are using other plugins). If you only want to limit to buddyblog pro, Please let me know where the form is on a page or on profile and I will update it.
Regards
Brajesh - Brajesh Singh on November 30, 2022 at 4:33 am in reply to: [Resolved] BuddyBlod Pro n number page link #47504
Hi Fredrick,
Thank you for the question and posting the solution.There must be some value specified in the list slug. It does not need to be list but any value will work.
I am glad that you have resolved it.
Regards
Brajesh