Search Results for 'toolbar'
-
AuthorSearch Results
-
December 25, 2015 at 2:32 pm #248103
In reply to: landing page for site visitors
shanebpModeratorI made a small adjustment to the code in an attempt to solve the issue you reported on the plugin support forums.
Can you confirm that it is working?Re “removing the toolbar and menu for all users except admin” – please do not double post.
Please use your existing thread:
https://buddypress.org/support/topic/disabling-the-toolbar-for-members-except-admin/December 25, 2015 at 2:21 pm #248102In reply to: landing page for site visitors
debabratsharmaParticipanti am using this BP Registration Options plugin which does the same work like your plugin i guess….although i m looking now for removing the toolbar and menu for all users except admin…..can you help me on that??
December 19, 2015 at 6:39 pm #247910In reply to: Rich Textet Editor toolbar
dlongm01ParticipantOK – I found it:
/* Buddypress rich text toolbar – hide fullscreen button*/
.mce-i-fullscreen::before {
display:none;
}December 16, 2015 at 3:46 pm #247810In reply to: No notifications for replies
fried_eggzParticipantYes @henrywright, the settings are correct.
Steps to repeoduce:
- Install vanilla WordPress 4.4
- Install vanilla BuddyPress 2.4.3
- Use default theme
- Post a status update
- Create a new user
- Log in as new user
- Comment on status
Just to be clear, I’m talking about notifications in WordPress toolbar. Have not checked if email notifications work since I’m on localhost.
November 15, 2015 at 1:43 am #246762In reply to: BuddyPress and Global Hide Admin Toolbar
sLa TeamParticipant@jeremymh wrote
Has this been resolved in the new version?
Yes! !! This plugin not have any issue …
You have posted this on forum: https://wordpress.org/support/topic/not-working-with-buddypress-installed/ but you have not provided any further information on the configuration used, or other plugins installed, or the conditions in which you experience the alleged problem, for registered and unregistered users, for example, so it is impossible to give assistance. BuddyPress also has to do the settings for the management of Admin Bar or Toolbar.
This plugin works at the administrative level, not at the user level.
What you’re talking about operates at user level, then an administrator, or super admin, has no control of these functions.
IMHO, given his role as moderator, should not make personal comments about plug-ins, and the work of its authors.
Thanks.
October 20, 2015 at 9:23 pm #245773In reply to: Problems with TopBar
Paul BursnallParticipantCan you post a screenshot of how you think the site should look, and a screenshot of what you see as a problem. I have access to the Kleo theme, and some experience of customizing the WordPress toolbar.
October 14, 2015 at 4:28 pm #245458In reply to: MP3 upload profile field
danbpParticipanti never used BuddyForms, so i can’t help you with this. Ask on their support if a specific audio field exist or can be added, and how.
That said, WP comes with all of this, but later. Meaning by this that a user will be able to upload an audio file once it is already registered.
It is commonly accepted that nothing can be added to a site as long as a new user is not validated or pending.
On a standart install, i would use a simple text field on a new field group named Audio. And, eg., if you allow 5 files, use 5 fields.
BP strips HTML on prfoile fields, so it’ not possible by default to get the automatted embed like in a post. Why is unclear to me, as embed is implemented since BP 1.6 for activities, groups, but not profiles… Anyway, a little bp-custom snippet magic (here it is ! ) will let you do this.
function set_audio_field( $field_value ) { $bp_this_field_name = bp_get_the_profile_field_name(); // field name (case sensitive) if( $bp_this_field_name == 'N° 1' || $bp_this_field_name == 'N° 2' ) { $field_value = strip_tags( $field_value ); $field_value = '[audio mp3 ="'.$field_value.'"]'; } return $field_value; } add_filter( 'bp_get_the_profile_field_value','set_audio_field');
That’s it for site admin. Now for the user.
The new user capability should be “author”, so he can upload files. This is default, but you can change that, if you search a bit on WP’s codex.
First he have to upload his file. From Toolbar: Dashbord > Media > add new. Then he has to copy the file URL avaible on the media upload page, under “edit” and then in the right menu.
User goes to his profile > edit > audio tab and paste the file URL into the audio field, save and voila ! Here the result:
That’s only one possibility. the’re others, like custom post type…
October 14, 2015 at 8:10 am #245444In reply to: Deleting Test Members in Buddypress
danbpParticipantHi,
members are all in the users list avaible on Dashboard > Users. If you are site admin, you can also delete members on frontend. Go to the profile you want to delete and click on Edit which appears on WP’s Toolbar. There is an item “delete this profile”.
Advantage goes to dashboard handling, as you can bulk delete from there. 😉September 11, 2015 at 8:35 pm #244304danbpParticipantI’m wondering what is a username for you.
WP register only a user by username (aka pseudonym), email and password. BP add a Name field in which you can add anything: username, first or lastname. In the user table, there is also display_name, wich is the combination of first and last name from a WP user profile, before BuddyPress was installed or if you allow your users to enter the dashboard, and they start to play with their profile settings. IMHO, it’s better they haven’t that access when BP is activated. 👮
When on the members directory, you (connected or not) can search a member by using his username.
If you use WP’s site search from toolbar or the search widget (same thing), it doesn’t work, as members are not post types… 👣
For now, i’m unsure what you want to fetch. Do you mean display_name ?
All search forms available in BP are contextualized, as @henrywright expected.
A BP class can be extended, a core function with a filter can be extended. You simply add your own to it.
In other cases, like forbp_core_action_search_site
function (in bp-core-classes.php)
there is an action and a filter. Wow. 💪You can rewrite the whole function and use the action hook or only change a part of it by using the filter.
remove_action( 'bp_init', 'bp_core_action_search_site', 7 ); function my_custom_core_action_search_site() { bla bla bla.... } add_action( 'bp_init', 'my_custom_core_action_search_site', 7 );
or
add_filter( 'filter_name', function_name');
Theorie here:
https://buddypress.org/support/topic/how-to-override-core-function/But before hacking to deep, read here:
Maybe you could find some interesting things about
include
orsearch_tems
options. 👀If all this is too much for you, consider this plugin:
https://wordpress.org/plugins/buddypress-global-search/
@prabin04, @henrywright
🚧 i’m really not an expert in matter of BP search, but thank you for your consideration.September 10, 2015 at 1:51 pm #244240In reply to: why does the WP login still appear in my toolbar?
danbpParticipantDifficult to say without knowing the theme name and WP config (single or network install).
In BP settings you can allow the toolbar to logged in user only.September 5, 2015 at 12:10 pm #244082In reply to: [Resolved] How To Get Notification Count? (Code)?
danbpParticipantThat’s WP Toolbar user menu with BP user menu as subnav.
https://codex.wordpress.org/ToolbarGoogling for custom howdy menu will bring a lot of answers.
September 5, 2015 at 11:26 am #244079In reply to: [Resolved] How To Get Notification Count? (Code)?
AilyRootParticipantmany thanks for this!
We now want to remove WP top toolbar (not the question here), we then want to ask how to move this whole part to a bit under, so information could join together
is this possible?
that area has “notifications”+ “member name”+ “search” + “drop out menu
August 31, 2015 at 9:14 pm #243913In reply to: [Resolved] BP user menu items
Paul BursnallParticipantI’ve resolved this now with the use of this plugin – https://wordpress.org/plugins/wp-symposium-toolbar/
August 31, 2015 at 11:30 am #243892In reply to: [Resolved] BP user menu items
Paul BursnallParticipantHi Steve,
Thanks for the reply, I see what you’re suggesting, but I’m looking for a function to directly add items to the profile menu on the toolbar in the same way BP does. I don’t want to assign profile items to a theme location, or create a new menu within my theme.
Thanks,
Paul.August 29, 2015 at 8:02 am #243821In reply to: BuddyPress and Global Hide Admin Toolbar
danbpParticipantPlugin author stopped support on wp.org repo since a few weeks.
sLaNGjIs Team do not provide support on wordpress.org forum and reviews system!If you get an issue, you have to ask here now https://github.com/sLaNGjI
This is also the reason why nobody answered to your question on support….FYI, i found this in the plugin review ! You’ve nothing to loose to try that.
In plugin’s ReadMe, it’s stated that:
* Work on all WordPress version from 3.1+ to 4.2+
* Compatible with bbPress and BuddyPress (for front-end hide).BuddyPress settings has an option to show/hide the Toolbar to users, which is working properly since a while. I’m not aware of any toolbar trouble who should be resolved in BP’s core in regard of a third party plugin.
Conclusion: don’t use a plugin who has no decent support. Do it yourself or search another plugin. Sorry !
August 24, 2015 at 6:26 pm #243544In reply to: How to disable admin bar from homepage
danbpParticipantTest admin bar (called Toolbar since WP 3.3) removal with one of Twenty’s theme.
It shows always on admin when logged-in, and depending the theme you use, on front-end.WP reference: https://codex.wordpress.org/Function_Reference/show_admin_bar
Which theme do you use ?
August 16, 2015 at 3:13 am #243249In reply to: My accaunt in menu or header
danbpParticipantHowdy [username] is part of WordPress Toolbar. When BP is activated, it add a sub-menu to this menu.
If you want it elswhere, it’s not really possible as the BP part of it was written to go to the admin_bar only.
To get a similar menu, you simply add buddypress menu to your theme main menu (explained on above codex link). But this menu will be static and you cant get same details.
Another solution is to recode that menu, so you can add it with a filter function to wp_nav_menu, which handles the main menu or the header menu.
To do this, you can use a new Walker Class extention or the existing filter. Possibly also some other ways to do this, but i don’t know them.
To remove the Howdy menu and the attached BuddyPress Profile sub menu from the Toolbar, you can use this snippet (in functions.php or bp-custom.php):
function bpfr_remove_my_account_menu() { global $wp_admin_bar; $wp_admin_bar->remove_menu('my-account'); } add_action( 'wp_before_admin_bar_render', 'bpfr_remove_my_account_menu' );
Codex References
https://codex.wordpress.org/Function_Reference/wp_nav_menu
https://codex.wordpress.org/Navigation_MenusAugust 14, 2015 at 9:53 pm #243209In reply to: Tool bar missing Register?
djstevebParticipant@darkhelmet1 – settings -> buddypress -> third tab near top is “settings”
first checkbox: Show the Toolbar for logged out usersIs it checked?
Which theme are you using?
Any other plugins installed / activated?
August 13, 2015 at 11:06 am #243134atfpodcastParticipantThe plugin should be removed from the site too.
And yes! phpmyadmin is the software name who allows you to manage a mySQL DB.done. i made an account as a normal user and toolbar is already selected to display but does not show so i will have to go in my db and change that. have not dived in phpmyadmin in a VERY LONG time
August 13, 2015 at 10:35 am #243126atfpodcastParticipantDeactivate and delete the admin bar plugin. Remove also any custom code you have added in the past concerning the toolbar. The idea is to revert back to a fully standard WP install.
It was already deactivated. I wonder if it left anything altered? that other snip it i added to try does not exist.
If this doesn’t work, you have to go to your db and check the wp_options table for the toolbar setting.
Search for option_name hide-loggedout-adminbar where value must contain 1.im using godaddy so i guess that would be in myphpadmin?
August 13, 2015 at 8:51 am #243116danbpParticipantI can confirm that Raindrops theme is working correctly with BP and taht the admin bar is showing up to logged in users.
Deactivate and delete the admin bar plugin. Remove also any custom code you have added in the past concerning the toolbar. The idea is to revert back to a fully standard WP install.
If this doesn’t work, you have to go to your db and check the wp_options table for the toolbar setting.
Search for option_namehide-loggedout-adminbar
where value must contain1
.August 13, 2015 at 3:54 am #243107djstevebParticipant@atfpodcast – is the bar there when they are not logged in?
does it do the same thing when using the 2014 or 2015 theme?
have you checked settings –
admin dashboard – settings – buddypress – click the settings tab – checkbox – Toolbar Show the Toolbar for logged out users ?
occur when other plugins are deactivated?
August 11, 2015 at 9:36 pm #243060In reply to: [Resolved] Add Count Near Nav Menu
danbpParticipantI tested the snippet on Buddy theme, so i’m pretty sure you have a user menu. This menu is on WP’s Toolbar. You see it when you’re logged in.
To choose an item position, you have to do it differently, as explained here:
[Resolved] Position Notification Counter Bubble after Specific Navigation Tab ID
For more about menu handling and functions, see WP Codex, as this is not really related to BuddyPress. Now it’s your turn to work a little !
July 28, 2015 at 5:28 pm #242509In reply to: Moving the Buddypress Admin Bar menu
danbpParticipantJune 8, 2015 at 1:20 pm #240440In reply to: Activity Problem
knittingthewebParticipantHi Patryk,
Did you try using the BuddyPress data repair tool? I’ve had some success with it in cases like this. In the back end toolbar, go to Tools > BuddyPress and choose which data to repair. You should only run one repair job at a time. (I usually step through all five repairs just to make sure everything’s synced.) Hope this helps! -
AuthorSearch Results