Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'toolbar'

Viewing 25 results - 251 through 275 (of 607 total)
  • Author
    Search Results
  • #181210
    jerryskate
    Participant

    Didn’t work for me.. But i redirected the admins titellinks, and hid the toolbar for regular users, seems to work good enough.

    aces
    Participant

    @matthewhout

    I 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….

    #179369
    danbp
    Participant

    Hi @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.

    #179181
    Duke Taber
    Participant

    Ok 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
    Wanguard

    9. 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

    #179090
    Duke Taber
    Participant

    Ok 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

    #179033
    SubstreamAI
    Participant

    Just 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

    #179032
    SubstreamAI
    Participant

    Just 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

    #179031
    SubstreamAI
    Participant

    Just 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

    #179020
    BuddyBoss
    Participant

    @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?

    #178137
    fkapnist
    Participant

    I 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; }

    BuddyBoss
    Participant

    To 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+

    brinkingyellows
    Participant

    Hi @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 buttons

    That’s about all the plugins that I have active that play a heavy part in Buddypress or are loosely connected to it.

    #176443
    hatherley
    Participant

    Thanks 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.

    #176407
    Boone Gorges
    Keymaster

    Did 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?

    #176083

    Well @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.

    #175523
    Justin Shead
    Participant

    The 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 Needed

    #174635
    focallocal
    Participant

    thanks 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.

    #174576
    mattg123
    Participant

    Well, 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

    #174574
    focallocal
    Participant

    i 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.

    #174565
    mattg123
    Participant

    well 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?

    #174564
    focallocal
    Participant

    no, 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.

    #174563
    mattg123
    Participant

    have you got any code in bp-custom.php?

    #174267
    husdom
    Participant

    Ditto…

    Experiencing the same issue…

    Mr Fox

    #173586
    chrisss1
    Participant

    Hi,
    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,
    Chris

    #173419
    @mercime
    Participant

    @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

Viewing 25 results - 251 through 275 (of 607 total)
Skip to toolbar