Search Results for 'toolbar'
-
AuthorSearch Results
-
August 24, 2019 at 2:44 pm #307509
In reply to: Add tab to user profile from plugin
mysticsofthenight
ParticipantMy apologies to all. I found out how to fix the problem of not being able to add additional tabs to the profile section for users on a main social site empowered by BuddyPress. You have to go to WordPress admin > Users > Profile fields and you can add any fields to the profile section of your social site website that is empowered by BuddyPress. This allows users to add their name, bio, location, work, education and anything else you want them to be able to add in their profile on your social site empowered by BuddyPress instead of in the backend of the wordpress page. Also, you can install a plugin that prevents your users from clicking on the dashboard link in top left toolbar and going to backend profile of WordPress, which is called Remove Dashboard access Version 1.1.3 | By Drew Jaynes and can be found at https://wordpress.org/plugins/remove-dashboard-access-for-non-admins/ That said, problem solved and may my solution fix this same users not being able to add more fields in their profile section on a main social website powered by BuddyPress that other admins encounter permanently.
August 24, 2019 at 2:41 pm #307508In reply to: Users can’t edit profile properly
mysticsofthenight
ParticipantNevermind all. I found out how to fix it. You have to go to WordPress admin > Users > Profile fields and you can add any fields to the profile section of the profile on your website. This allows users to add their name, bio, location, work, education and anything else you want them to be able to add in their profile on your site instead of in the backend of the wordpress page. Also, you can install a plugin that prevents your users from clicking on the dashboard link in top left toolbar and going to backend profile, which is called Remove Dashboard access Version 1.1.3 | By Drew Jaynes and can be found at https://wordpress.org/plugins/remove-dashboard-access-for-non-admins/ That said, problem solved and may my solution fix this same users not being able to add more fields in their profile section on a main website powered by BuddyPress that other admins encounter permanently.
April 27, 2019 at 4:09 pm #305427rmchale
ParticipantHi,
Is there a way to hide the rich text editor toolbar in a multi-line text area field based on the users role.
I don’t want to have to create separate fields for each user role.
Thank you
April 12, 2019 at 4:02 pm #304717In reply to: BuddyPress Custimizations
Venutius
ModeratorOne way is to use the wordpress toolbar dropdown as I described earlier, there’s a profile option and in there you can select change profile image
April 12, 2019 at 3:12 pm #304711In reply to: BuddyPress Custimizations
Venutius
ModeratorHi there, some answers:
1. You can change the layout of profiles by overloading the profile files and css, see: https://codex.buddypress.org/themes/theme-compatibility-1-7/theme-compatibility-2/ it’s possibly a bit advanced for you right now but all the files in the plugins/buddypress/bp-templates/your-bp-theme/buddypress can be copied, modified and loaded from your child theme directory. Similarly you can overload the css to make styling and layout changes.
1b. The default is for horizontal navigation unless you’ve changed it in Customizer>>BuddyPress.
2. The BuddyPress extended profile is editable from the front end, and avatar too. It’s only the wordpress profile that’s enditable in admin and most BP sites don’t use that as t’s really set up for authors.
3. I recently posted the code to combine all the profile activity feeds into 1, https://buddypress.org/support/topic/how-to-combine-activity-tabs-to-one/
4. https://wordpress.org/plugins/cb-change-mail-sender/
5+6 are bbPress questions, for the best answer you should post on their forum https://bbpress.org/forums/
7. Assuming you have set up the groups directory page and enabled group creation by users in Settings>>BuddyPress>>Options, users will have the option to create groups on the Groups directory page and also from the Groups menu of the WordPress toolbar ( top right hand side of the screen, hover over your avatar image, drop down will appear one option will be groups.
April 3, 2019 at 3:33 pm #304283In reply to: Creating groups
Venutius
ModeratorSo long as you have groups enabled then you should see create group in the Groups page, and also as an option in the WordPress toolbar under groups.
March 22, 2019 at 6:38 pm #303892In reply to: WordPress Dashboard
Venutius
ModeratorThe basic option is to set up a redirect for anyone but admin, that would involve adding some code to your functions.php. There’s probably plugins that d it, but it’s quite simple with code if you are happy with that.
That would not stop links from appearing in the WordPress admin-bar / toolbar. Would you still want to give them access to the BuddyPress menu options via the toolbar?
I’ve recently launched a BP specific Front End editor and I’ve included all the various hide admin code in that. You can choose to hide the admin-bar altogether or prune out the menu items you don’t want to display, such as the +New menu item.
March 20, 2019 at 9:42 am #303745Venutius
ModeratorHere’s how to remove forums from all users profile tabs and toolbar menu, this code would need to go in your child-themes functions.php:
function venutius_remove_forums_on_usermenu() { global $wp_admin_bar; if ( bp_use_wp_admin_bar() ) { $wp_admin_bar->remove_node( 'my-account-forums' ); } } add_action( 'wp_before_admin_bar_render', 'venutius_remove_forums_on_usermenu' ); function venutius_remove_profile_forums_tab() { bp_core_remove_nav_item( 'forums' ); } add_action( 'bp_actions', 'venutius_remove_profile_forums_tab' );February 18, 2019 at 3:25 pm #302937In reply to: Custom notification text don’t show on front page
shanebp
ModeratorUntested, but try:
function custom_format_buddypress_notifications( $action, $item_id, $secondary_item_id, $total_items, $format = 'string' ) { // New custom notifications if ( 'custom_action' === $action ) { $custom_title = "You have new custom notification"; $custom_link = get_permalink( $item_id ); $custom_text = "You have a new custom notification"; // WordPress Toolbar if ( 'string' === $format ) { $return = apply_filters( 'custom_filter', '<a href="' . esc_url( $custom_link ) . '" title="' . esc_attr( $custom_title ) . '">' . esc_html( $custom_text ) . '</a>', $custom_text, $custom_link ); // Deprecated BuddyBar } else { $return = apply_filters( 'custom_filter', array( 'text' => $custom_text, 'link' => $custom_link ), $custom_link, (int) $total_items, $item_id, $secondary_item_id ); } return $return; } } add_filter( 'bp_notifications_get_notifications_for_user', 'custom_format_buddypress_notifications', 20, 5 );December 2, 2018 at 4:05 pm #282429Venutius
ModeratorThere’s a setting for that in Settings>BuddyPress>Options – Show Toolbar to logged out users.
September 12, 2018 at 12:00 pm #276327Topic: How to set up a My profile page
in forum How-to & Troubleshootingbflexiblejanneke
ParticipantHi, I am a using a combination of WP Members and Buddypress.
I use Buddypress for the activity registration and the extended profile fields.As an admin I can see and edit the extended profile field of my members, but they do not have the toolbar. How can I add a ‘my profile page’ where they can see and edit their extended fields and activities?
They can now only see it when they click on their own picture at ‘who’s online’.Thanks for the help!
August 10, 2018 at 8:08 pm #275639In reply to: BuddyPress Menu Not Showing for Old Members
shanebp
Moderator“Show Toolbar when viewing site” is a WP setting.
Somebody probably has such a function.
But you should ask a larger audience – trywordpress.org/support/August 10, 2018 at 7:40 pm #275637In reply to: BuddyPress Menu Not Showing for Old Members
yusareba
ParticipantI figured out the cause for this issue. When going to the user profile for each member, the check box “Show Toolbar when viewing site” is unchecked for all members. If there were only a few registered members I would just go back to each one and change them, however there are hundreds and would take quite a long time.
Is there a function I can put in functions.php to override it and enable toolbar for everyone?
It would be most helpful. Thank you.
July 3, 2018 at 8:14 pm #274962stevengnk88
ParticipantNah nah
I just want to separate the notifications one by one.
For example:
Firstly, I receive a notification : You have 1 new reply on topic “A” from “username”.
Next, a other user comment on my another topic, and I received: You have 2 new replies.
That’s it.
From the second notification, I cant get anything clearly from the notifications, y’know. The notifications which I mention are the notification bubble from admin toolbar and from The notifications Bell module, they have same result.
Finally, I just want the notifications just show one by one, not grouped.June 8, 2018 at 9:49 am #274218In reply to: “Show Toolbar to visitor” Option does not work
thedark52
ParticipantI don’t think there is a problem with themes or plugin. The toolbar is correctly displayed to registered users.
May 27, 2018 at 1:10 pm #273630In reply to: Few things
Varun Dubey
Participant@omshankar no need to hide the complete toolbar, you can change option for WordPress logo inside plugin with your custom logo
May 9, 2018 at 12:16 am #272852mubiesam
ParticipantFinally found the cause is the Woocommerce plugin which disappeared the toolbar, a solution recommended by @alicia250 solved the problem.
ThanksMay 3, 2018 at 9:35 am #272639mubiesam
Participant@vapvarun did change to activate BuddyPress at the network level, but only https://lt.johocen.com/ will not display the toolbar, the other 2 sites are OK.
Will it be conflict with the theme used? where should i look into?
Your suggestion is highly appreciated.
SamMay 2, 2018 at 4:13 am #272579mubiesam
ParticipantAs stated “It was there, but not sure what was the cause, now it disappeared.”
I had removed all 3 plugins…BuddyPress, BuddyPress Registration Options, and Super Socializer. While installed back the Super Socializer, found something weird…
My multisite main site https://johocen.com/ show the toolbar correctly, but subsite https://lt.johocen.com/ just disappeared.
It means, without BuddyPress and BuddyPress Registration Options, the toolbar problem is still there, but what happened was, https://lt.johocen.com/ is the only site installed with these 2 plugins.
It sounds strange, but it seems the toolbar was disappeared right after I had added this line at the end of bp-registration-options/includes/core.php
add_action( 'the_champ_user_successfully_created', 'bp_registration_options_notify_pending_user', 10, 1 );
But now even I had removed BuddyPress and BuddyPress Registration Options, the problem is still there.I noticed that even the plugin removed, but the database created for plugin is still stored, is there a way to completely removed the plugin and it’s db?
This problem is driving me crazy, any help is highly appreciated.
May 1, 2018 at 11:30 am #272561Venutius
ModeratorThe buddyPress toolbar is also the WordPress Toolbar. There is no function in BuddyPress to hide the toolbar completely, however there are a number of general wordpress plugins that will completely hide the toolbar.
I remember squirrelling around one site to find what had caused this and it turned out to be a front end publishing plugin that had a default setting to hide the toolbar.
So my first question is this – are you sure it’s BuddyPress causing this? have you deactivated all other plugins and still get the problem with BP loaded?
April 8, 2018 at 4:49 am #271908In reply to: How to create landing page w/out top menu options
Venutius
ModeratorWhich top menu options? the WordPress toolbar?
January 27, 2018 at 9:11 am #270366In reply to: How to customize/remove user dropdown menu?
eliasgetguineapig
ParticipantHi Paul!
Thanks for replying!
Apologies, I’m not referring to the WordPress Toolbar. I’ve marked the dropdown menu in this image to make it more clear what I want to customise/remove.
For example, I’ve removed the “Profile” page, because I just want to have a “my account” page from WooCommerce. This has caused the text in the dropdown menu to disappear when I’m not hovering the mouse over the options in the menu, but when I click in the menu I still go to /profile, etc. which yields a 404 since I’ve removed the page. Therefore, I want to remove the items in that menu.
How can one do this?
Thank you for the support!
January 26, 2018 at 3:53 pm #270329In reply to: How to customize/remove user dropdown menu?
Paul Wong-Gibbs
KeymasterDo you mean on the WordPress Toolbar? (this thing — https://codex.wordpress.org/Toolbar )
If so, if you search for ways to customise or hide the WordPress Toolbar, you should get some clues. It’s not a UI component provided by BuddyPress.December 27, 2017 at 5:31 pm #269788In reply to: question on what a member sees
saz25
ParticipantThanks for the quick reply.
I just did that.
That only removes the top black toolbar from when you are not logged in.
It still shows up after you are logged in.Is this not possible to remove?
Do most BuddyPress implementations usually leave it that way?
SteveDecember 27, 2017 at 5:21 pm #269785In reply to: question on what a member sees
leog371
ParticipantOk, so basically this toolbar that you are seeing on the top of your site when you login with your new user account is not really a full admin dashboard bar. It only links to the part of the back end dashboard that allows the user to edit his profile in the back end. Nothing else can be messed with by anyone but the admin. Try it out and experiment with it. you’ll see.
Also, if you want to turn that feature off, simply login to the back end as admin, go to “settings” / “buddypress” and on the 3rd tab “Options”, simply deselect “Show the Toolbar for logged out users”
-
AuthorSearch Results