Replies
- This reply has been marked as private.
- Brajesh Singh on October 4, 2022 at 4:03 pm in reply to: how to add reach text field in a user profile #46781
Hi,
I am sorry, I am hesitating to work on this one.tinymce has a wordcount plugin which can be used for our purpose. This plugin does not come wit WordPress, so we need to load it as external plugin.
The problem is the editor that you are seeing on front end is using the tiny mce editor in “teeny” mode where minimal plugins are loaded and WordPress does not offer any support for loading external plugins in this mode.
In the normal mode, WordPress does offer a simple way to load external plugins with tinymce.
In other words, the task which seems a simple one became a time taking one and I am not able to justify the time and the cost with the result.
So, I will suggest avoiding it.
Regards
Brajesh - Brajesh Singh on October 4, 2022 at 1:43 pm in reply to: [Resolved] Create a tab (nav_item) that can display custom post type items of user. #46780
Thank you.
- Brajesh Singh on October 4, 2022 at 1:42 pm in reply to: [Resolved] Connecting Xprofilefields to User insights #46779
Hi Ethan,
Please share the screenshot showing the location. I have re-checked and It is working fine when you click on a user’s name in the list and their data view is shown.Regards
Brajesh - Brajesh Singh on October 3, 2022 at 7:44 pm in reply to: [Resolved] Create a tab (nav_item) that can display custom post type items of user. #46769
Hi Lefteris,
For the menu, I don’t have any solution. To be honest, the theme should use menu items fetched from wwp admin bar account node and not the BuddyPress component.Regards
Brajesh - This reply has been marked as private.
- Brajesh Singh on October 3, 2022 at 7:37 pm in reply to: BuddyBlog Pro – BuddyBoss – Ability to link and restrict a post to a group #46767
Hi Didier,
Thank you.
I am glad that you found out. We are working on documentation as well as oln providing better hint/error messages to guide in the right direction.Please do share your feedback.
Regards
Brajesh - This reply has been marked as private.
- Brajesh Singh on October 3, 2022 at 6:41 am in reply to: Non Admin should see only his likes and comments on another user’s post #46753
Hi Catherine,
I am sorry, I could not look at it earlier.After a close look, It is way too much specific to BuddyBoss and I will suggest asking BuddyBoss support for the same.
Regards
Brajesh - Brajesh Singh on October 3, 2022 at 6:18 am in reply to: [Resolved] Create a tab (nav_item) that can display custom post type items of user. #46752
Hi Lefteris,
Thank you for the details.Here is the updated code. Please give it a try.
function mb_bp_profile_menu_radio_shows() { $user_id = bp_is_user() ? bp_displayed_user_id() : bp_loggedin_user_id(); $user = get_user_by( 'id', $user_id ); if ( ! $user || ! array_intersect( $user->roles, array( 'editor', 'administrator', 'author' ) ) ) { return; } bp_core_new_nav_item( array( 'name' => 'ΕΚΠΟΜΠΕΣ', 'slug' => 'shows', 'position' => 30, 'default_subnav_slug' => 'shows', 'screen_function' => 'producer_shows', 'show_for_displayed_user' => true, ) ); }Regards
Brajesh