Search Results for 'toolbar'
-
AuthorSearch Results
-
April 13, 2014 at 10:55 pm #181210
In reply to: Buddypress on multisite, segregates users. Help!
jerryskateParticipantDidn’t work for me.. But i redirected the admins titellinks, and hid the toolbar for regular users, seems to work good enough.
March 13, 2014 at 3:50 pm #179705acesParticipantI think you may be running on a windows IIS server as your links are of the form http://www.hout.us/Hout.US/index.php/about/ I’m not sure, but I don’t think you are meant to have index.php in a URL –
Also I think that capital letters in a URL are also invalid as maybe also is a dot between slashes ( in this probable context ) – ie the dot in: /Hout
.
US/Are you sure you have installed wordpress correctly with mod_rewrite or substitute.
Does the suggestions on https://buddypress.org/support/topic/404-error-when-using-toolbaradminbar/ help?
Unfortunately I can’t be of more help as although I run windows I use an apache server, But others may have a better idea….
March 6, 2014 at 1:35 pm #179369In reply to: Notification count in dynamic menu
danbpParticipantHi @transmission,
this is not the solution, but an example for your inspiration.
The below shows how the notification counter can be moved/implemented on the toolbar./* moving the notification counter from right to left */ remove_action( 'admin_bar_menu', 'bp_members_admin_bar_notifications_menu', 90 ); function bpfr_notification_ontheleft() { global $wp_admin_bar; if ( !is_user_logged_in() ) return false; $notifications = bp_core_get_notifications_for_user( bp_loggedin_user_id(), 'object' ); $count = !empty( $notifications ) ? count( $notifications ) : 0; $alert_class = (int) $count > 0 ? 'pending-count alert' : 'count no-alert'; $menu_title = '<span id="ab-pending-notifications" class="' . $alert_class . '">' . $count . '</span>'; // Add the top-level Notifications button $wp_admin_bar->add_menu( array( /*'parent' => 'top-secondary',*/ // this is the original position 'id' => 'bp-notifications', 'title' => $menu_title, 'href' => bp_loggedin_user_domain(), ) ); if ( !empty( $notifications ) ) { foreach ( (array) $notifications as $notification ) { $wp_admin_bar->add_menu( array( 'parent' => 'bp-notifications', 'id' => 'notification-' . $notification->id, 'title' => $notification->content, 'href' => $notification->href ) ); } } else { $wp_admin_bar->add_menu( array( 'parent' => 'bp-notifications', 'id' => 'no-notifications', 'title' => __( 'No new notifications', 'buddypress' ), 'href' => bp_loggedin_user_domain() ) ); } return; } add_action( 'admin_bar_menu', 'bpfr_notification_ontheleft',30); /* other position # are 10, 20, 40, 50, 60, 70, 80, 90 */
In your case, you also have to check this Codex page. And possibly do some research here.
March 2, 2014 at 9:02 pm #179181In reply to: 500 Error when Notifications Turned On
Duke TaberParticipantOk I just read modernloopers list of questions so I want to make this as clear as possible. First this problem is not a plugin problem. I disabled and deleted all and it didn’t fix the problem. I also tried a different theme and it didn’t fix the problem so it is not a theme problem. TJ at Buddyboss tried valiantly to figure out the problem to no avail.
Here are the questions that modernlooper wanted answered.
Please try to supply answers to the following questions.
1. Which version of WordPress are you running? 3.81
2. Did you install WordPress as a directory or subdomain install? directory
3. If a directory install, is it in root or in a subdirectory? root
4. Did you upgrade from a previous version of WordPress? If so, from which version? every one for the last year
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes
6. Which version of BP are you running? 1.92
7. Did you upgraded from a previous version of BP? If so, from which version? Every one for the last year until 1.9 and then it broke. I just went back to my backup and waited. Upgraded to 1.92 and it is still broken. Went through all the normal troubleshooting processes until figuring out it was the notifications that is causing the error.
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
Ads Manager WP/BB
Akismet
BBpress
BB Force Profile
BuddyPress Tiny group chat
BuddyPress Links
Easy Album
Facebook Friends Inviter
IFlyChat
Invite Anyone
Social Login
Wanguard9. Are you using the standard BuddyPress themes or customized themes? BuddyBoss
10. Have you modified the core files in any way? No
11. Do you have any custom functions in bp-custom.php? No, or at least none I am aware of that was put in there personally
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? 2.5.3
13. Please provide a list of any errors in your server’s log files.
[Fri Feb 28 14:41:05 2014] [warn] [client xxx] mod_fcgid: stderr: PHP Fatal error: Call to undefined function bp_notifications_toolbar_menu() in /var/www/vhosts/xxx/httpdocs/wp-content/plugins/buddypress/bp-members/bp-members-adminbar.php on line 148, referer: xxx/wp-admin/options-general.php?page=bp-components
14. Which company provides your hosting? Media Temple
15. Is your server running Windows, or if Linux; Apache, nginx or something else? Linux and Apache
February 28, 2014 at 8:00 pm #179090In reply to: 500 Error when Notifications Turned On
Duke TaberParticipantOk I am having trouble posting the error in the log.
[Fri Feb 28 14:41:05 2014] [warn] [client xxx] mod_fcgid: stderr: PHP Fatal error: Call to undefined function bp_notifications_toolbar_menu() in /var/www/vhosts/xxx/httpdocs/wp-content/plugins/buddypress/bp-members/bp-members-adminbar.php on line 148, referer: xxx/wp-admin/options-general.php?page=bp-components
February 28, 2014 at 4:37 am #179033In reply to: Admin Only Control Over Group Membership
SubstreamAIParticipantJust thought I’d update for anyone else with a similar problem. It has turned out that my Possible Solution #1 above has solved this for me completely. It does behave differently for Administrators (as it should) which caused me some confusion.
Other Plugins I would recommend people look at if they have similar needs to mine:
Theme My Login by Jeff Farthing: integrates user login screens into you Wordpres site/theme.
Plugin: https://wordpress.org/plugins/theme-my-login/
Website: http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/Global Hide/Remove Admin Bar Plugin bye Don Fischer: hides the WordPress Toolbar/admin bar
Plugin: https://wordpress.org/plugins/global-admin-bar-hide-or-remove/
Website: http://www.fischercreativemedia.com/plugins/global-hideremove-toolbar-plugin//Finally bbPress WP Tweaks: so popular I’m not going to leave links.
All these plugins are essential to my gaming clan site: http://ducesoforion.com
February 28, 2014 at 4:35 am #179032In reply to: Admin Only Control Over Group Membership
SubstreamAIParticipantJust thought I’d update for anyone else with a similar problem. It has turned out that my Possible Solution #1 above has solved this for me completely. It does behave differently for Administrators (as it should) which caused me some confusion.
Other Plugins I would recommend people look at if they have similar needs to mine:
Theme My Login by Jeff Farthing: integrates user login screens into you Wordpres site/theme.
Plugin: https://wordpress.org/plugins/theme-my-login/
Website: http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/Global Hide/Remove Admin Bar Plugin bye Don Fischer: hides the WordPress Toolbar/admin bar
Plugin: https://wordpress.org/plugins/global-admin-bar-hide-or-remove/
Website: http://www.fischercreativemedia.com/plugins/global-hideremove-toolbar-plugin//Finally bbPress WP Tweaks: so popular I’m not going to leave links.
All these plugins are essential to my gaming clan site: http://ducesoforion.com
February 28, 2014 at 4:35 am #179031In reply to: Admin Only Control Over Group Membership
SubstreamAIParticipantJust thought I’d update for anyone else with a similar problem. It has turned out that my Possible Solution #1 above has solved this for me completely. It does behave differently for Administrators (as it should) which caused me some confusion.
Other Plugins I would recommend people look at if they have similar needs to mine:
Theme My Login by Jeff Farthing: integrates user login screens into you Wordpres site/theme.
Plugin: https://wordpress.org/plugins/theme-my-login/
Website: http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/Global Hide/Remove Admin Bar Plugin bye Don Fischer: hides the WordPress Toolbar/admin bar
Plugin: https://wordpress.org/plugins/global-admin-bar-hide-or-remove/
Website: http://www.fischercreativemedia.com/plugins/global-hideremove-toolbar-plugin//Finally bbPress WP Tweaks: so popular I’m not going to leave links.
All these plugins are essential to my gaming clan site: http://ducesoforion.com
February 27, 2014 at 11:34 pm #179020In reply to: [Resolved] BuddyPress Toolbar everywhere?
BuddyBossParticipant@bbindikator Are you referring not to the admin bar / Toolbar but instead to the links below the avatar as seen on a user’s profile?
February 8, 2014 at 4:53 pm #178137In reply to: [Resolved] Remove Dashboard Access
fkapnistParticipantI added these lines to my theme settings to remove WordPress dashboard icons from the toolbar:
#wp-admin-bar-wp-logo { display:none; }
#wp-admin-bar-site-name { display:none; }January 19, 2014 at 3:37 am #177169BuddyBossParticipantTo remove that for logged out users, go to Settings > BuddyPress > Settings. Make sure “Show the Toolbar for logged out users” is set to “No”. Then you’ll need a link somewhere for people to login/register. You can use the login widget packaged with BuddyPress 1.9+
January 10, 2014 at 8:46 pm #176732brinkingyellowsParticipantHi @r-a-y. Here are the plugins I am currently using on the site.
Network Activated:
Advanced Responsive Video Embedder
Anti-Splog
Are You a Human
bbPress
bbPress – Report Content
bbPress Enable TinyMCE Visual Tab
bbpress Simple View Counts
BP Profile Search
BuddyPress Activity Plus – (I did deactivate this after the 1.9.1 update but nothing changed)
BuddyPress Avatar Bubble
BuddyPress Follow
BuddyPress Group Calendar
BuddyPress Groups Extras
Buddypress Social
BuddyPress Toolbar
BuddyPress Twitter
Buddypress Xprofile Custom Fields Type
GD bbPress Toolbox
Group Forum Crumbs
rtMedia for WordPress, BuddyPress and bbPress
User Activity
WP User Avatar—-
Single Site Actived
Amazon Product In a Post Plugin
BuddyMenu
BuddyPress Notifications Widget
Really simple Facebook Twitter share buttonsThat’s about all the plugins that I have active that play a heavy part in Buddypress or are loosely connected to it.
January 5, 2014 at 10:58 am #176443In reply to: Notifications stopped working? BP 1.9.1
hatherleyParticipantThanks for the reply,
Just checked – It came when I upgraded to 1.9
I’ve just disabled the regular WP toolbar, the notifications dropdown isn’t custom coded.January 4, 2014 at 7:28 pm #176407In reply to: Notifications stopped working? BP 1.9.1
Boone GorgesKeymasterDid this just happen with your upgrade to 1.9.1 from 1.9, or were you upgrading from an earlier version of BP?
You mention you’re not using the regular WP toolbar. What are you using to power the Notifications dropdown from your screenshot? Is it custom coded?
December 26, 2013 at 3:16 pm #176083In reply to: Muliple profiles, one account.
Djouonang LandryBlockedWell @RukiaR7 what you are asking for has been demanded in these forums time and time again but no one has really ever coded this kind of plugin however i am working on a project like that for http://www.pressbooker.com My team just finished the first plugin today which is the facebooklike toolbar for the wordpress adminbar. What i will be building is similar but a little different in that people who have different profile types for different user roles they signed up from. And admin will be able to choose which profile is neccessary for which user role.For the first time facebook timeline will be coming into plugin develoment on wordpress and buddypress. If you are interested please hire me at once. It will be only for a week and you get it.
December 14, 2013 at 10:03 pm #175523In reply to: How to remove admin bar in buddypress 1.6.4
Justin SheadParticipantThe option to remove the BuddyPress admin bar is in the settings menu.
Visit “yoursite.com/wp-admin/admin.php?page=bp-settings”
Under “Main Settings” next to “Toolbar” uncheck “Show the Toolbar for logged out users”– Save Settings
– View/Refresh Page
– Clear Browser’s Cache If NeededNovember 21, 2013 at 5:44 pm #174635In reply to: avatar displays too large and stretches the toolbar
focallocalParticipantthanks for your time and advice. i
i’m not sure that’s what i’m looking for so i think i’m gonna have to mess around with the coding myself, which i’m sure will take me an astronomical amount of time as i dont really code, but i cant go back to having a cluttered toolbar full of junk again.
November 20, 2013 at 5:52 pm #174576In reply to: avatar displays too large and stretches the toolbar
mattg123ParticipantWell, if you have the knowledge you can fix it, however @bphelp has code for a custom toolbar https://github.com/bphelp/custom_toolbar either way you’ll need some coding knowledge
November 20, 2013 at 5:36 pm #174574In reply to: avatar displays too large and stretches the toolbar
focallocalParticipanti think i’ve tracked it down. there seems to be a conflict between buddypress and ‘Take Control Of The WordPress Toolbar’ plugin.
i’ve posted a support question but it doesnt look like the author is answering support questions any more. if anyone has any idea of how i might be able to fix this it would be brilliant as i am reluctant to delete the plugin, although i expect that will be the only option in the end.
November 20, 2013 at 4:39 pm #174565In reply to: avatar displays too large and stretches the toolbar
mattg123Participantwell from the looks of things your admin bar has been modified, check buddypress’s admin bar for example, so i would start by deactivating all plugins – minus bp AND use bp default theme. Also is the admin bar displayed while bp is deactivated?
November 20, 2013 at 4:32 pm #174564In reply to: avatar displays too large and stretches the toolbar
focallocalParticipantno, unless a plugin might have added it. the avatar appeared like that from when i first installed – but only to users, in the admin account it is fine.
November 20, 2013 at 4:27 pm #174563In reply to: avatar displays too large and stretches the toolbar
mattg123Participanthave you got any code in bp-custom.php?
November 15, 2013 at 9:11 pm #174267In reply to: Toolbar buddypress menu on iPhone and iPad
husdomParticipantDitto…
Experiencing the same issue…
Mr Fox
October 30, 2013 at 12:43 am #173586In reply to: 404 Error when using toolbar/adminbar
chrisss1ParticipantHi,
That helped!
Problem solved.I installed URL Rewrite Module and had to create a new blank web.config file in
the wordpress dir, because it wasn´t created when I installed wordpress. then I copied the code from https://codex.wordpress.org/Using_Permalinks#Permalinks_without_mod_rewrite in the web.config file. And that worked 😀Greetings,
ChrisOctober 27, 2013 at 2:40 am #173419In reply to: 404 Error when using toolbar/adminbar
@mercimeParticipant@chrisss1 How exactly did you enable pretty permalinks in your Windows server? Not going to work with BP if you just append index.php to the URL. See https://codex.wordpress.org/Using_Permalinks#Permalinks_without_mod_rewrite
-
AuthorSearch Results