Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'toolbar'

Viewing 25 results - 51 through 75 (of 803 total)
  • Author
    Search Results
  • #274121
    thedark52
    Participant

    Hello,

    I would like to make visible the toolbar with access to the user profile to registered users. I have disabled the visibility of the toolbar to unregistered users, but apparently not even those registered see it. How can I solve?

    Installed Plugins: Akismet Anti-Spam, Asgaros Forum, BuddyPress, iubenda Cookie Solution for GDPR, JS Support Ticket, Maintetance by fruitfulcode, Really Simple SSL

    #273630

    In 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

    mrlen
    Participant

    After the 3.0.0 Update, my forums no longer display in KLEO theme.

    Also, the toolbar at the top does not appear. There’s a space for it, but it is blank. This only happens on the forum pages.

    ie:

    https://www.freedomworkshop.com/groups/real-news/forum/

    mubiesam
    Participant

    Finally found the cause is the Woocommerce plugin which disappeared the toolbar, a solution recommended by @alicia250 solved the problem.
    Thanks

    mubiesam
    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.
    Sam

    mubiesam
    Participant

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

    phucitol
    Participant

    I’ve been using bp_notifications_add_notification to add a notification with “component_action”=”activity_liked” for component_name activity. I can see that it is being saved in the database, but when I try to display an entry for it in the notifications view it seems that my callback function never runs. Every example I’ve found online has mirrored my function but it never seems to be called. Do I need to register the component_action or something?

    I’ve looked in the buddypress core files and they all seem to pass 8 parameters instead of 5 during apply_filters_ref_array, which I also tried but still my callback wouldn’t run. I’ve tried it every way with no other plugins but buddypress activated and still it fails.

    I’m truly lost on how to get this working.

    function custom_format_buddypress_notifications( $action, $item_id, $secondary_item_id, $total_items, $format = 'string' ) {
    	// New custom notifications
    	if ( $action == 'activity_liked') {
    
    		$custom_title = 'activity liked';
    		$custom_link  = '/activity/' . $item_id . '/';
    		$custom_text = bp_core_get_user_displayname( $secondary_item_id ) . ' liked your activity';
    
    		// 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, $custom_text, $custom_title );
    		}
    	} else {
    		$return = $action;
    	}
    
    	return $return;
    }
    add_filter( 'bp_notifications_get_notifications_for_user', 'custom_format_buddypress_notifications', 10, 5 );
    Venutius
    Moderator

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

    mubiesam
    Participant

    Toolbar? (user profile picture of buddypress on the top right) disappeared.

    “Show the Toolbar for logged out users” was checked.
    Related plugins installed: BuddyPress Registration Options / Super Socializer

    It was there, but not sure what was the cause, now it disappeared.

    Any help to point a direction is appreciated.

    #271908
    Venutius
    Moderator

    Which top menu options? the WordPress toolbar?

    #271512
    bumblebeegames
    Participant

    Hiya guys.
    Unfortunately, I am having serious problems with a topic seen here every once in a while. I did go through all the posts I could find and tried half a dozen approaches, but none seems to be working.
    I am adding notifications to a user when someone is requesting access to a post of that user and so far, everything is fine. The notification shows up in the DB with ID, user id, item_id and secondary_id as well as component_name and component_action.
    Now, whenever I receive such a notification, it shows up completely blank.
    This is my code:

    function request_filter_notifications_get_registered_components( $component_names = array() ) {
     
        // Force $component_names to be an array
        if ( ! is_array( $component_names ) ) {
            $component_names = array();
        }
    
        // Add 'custom' component to registered components array
        array_push( $component_names, 'project-pitches' );
     
        // Return component's with 'custom' appended
        return $component_names;
    }
    add_filter( 'bp_notifications_get_registered_components', 'request_filter_notifications_get_registered_components' );
    
    // Formatting custom with respect to action
    function bp_request_format_buddypress_notifications( $component_action_name, $item_id, $secondary_item_id, $item_count, $format = 'string' ) {
     		
    		if ($component_action_name  !== 'request') {
    			return $component_action_name ;
    		}
    		
    		$link = get_site_url();
    		$returnlink = $link . "/my-projects/";
        	$request_title = "Test"; /*get_the_title($item_id);*/
        	$request_link  = $returnlink;
        	$request_text  = "abc";
    
        // New custom notifications
        if ( 'request' === $component_action_name ) {
            
            // WordPress Toolbar
            if ( 'string' === $format ) {
                $return = apply_filters( 'request_filter','Your custom notification for <a href="'.$request_link.'">'.$request_title.'</a> ', $request_text, $request_link );
                $return = "Test";
     
            // Deprecated BuddyBar
            } else {
                $return = apply_filters( 'request_filter', array(
                    'text' => $request_text,
                    'link' => $request_link
                ), $request_link, (int) $total_items, $request_text, $request_title );
            }
            
            return $return;
            
        }
    }
    add_filter( 'bp_notifications_get_notifications_for_user', 'bp_request_format_buddypress_notifications', 10, 5 );

    Any idea what I might be doing wrong here? Thanks a ton, this is driving me nuts!

    senatorman
    Participant

    Hoi,

    We use Buddypress with BBpress and there is a little problem with the url from the toolbar notifications.

    This url goes to the first post of the right topic, but not to the specific post related to that notification.

    Can someone help me to fix this.

    #270366
    eliasgetguineapig
    Participant

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

    Image

    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!

    #270329
    Paul Wong-Gibbs
    Keymaster

    Hi @eliasgetguineapig

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

    #270201
    hinton92
    Participant

    Hi there all I hope you are all doing well.

    I am trying to create a website that involves poets/writers writing there stuff down.

    we have a Facebook group to do this at present.

    I am working on a project for a charity creating the website.

    However

    on activity streams you can put a post up as you well aware.

    I want it so the text can be justified, underlined, font size (text toolbar)

    I need it with the post update feature on the activity stream.

    is there a plugin? or anything I could do.

    I’m a beginner with PHP and CSS and other programming languages.

    I have found wordpress has allot of my needs and it’s easier to use.

    I wonder if anyone can point me in the right direction

    Thanks Nick

    #269788
    saz25
    Participant

    Thanks 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?
    Steve

    #269785
    leog371
    Participant

    Ok, 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”

    #269502
    brent0r
    Participant

    I’m wanting to integrate buddypress into my existing navbar on my site. At the moment the buddypress profile (notifications count, howdy user and menu) are in the top right of the WordPress admin toolbar. What options do I have to move this / add it to an existing navbar (basically the way this website utilises its own navbar and not the WP adminbar.

    Thanks in advanced.
    Brent

    #269500
    nexusplays
    Participant

    Hello, I’m using WordPress 4.9.1 and the theme is Divi.

    I am having a slight issue with having the icon on the corner for users, the admin (me) has the icon but other members cannot see it. I have included the code:

    #wp-toolbar > ul > li {display:block;}

    and I can now see notification numbers and the little icon of the site. This is visible in the screenshot, however, the user’s avatar/icon is not visible in the corner of the screen.

    Here is the screenshot:

    https://prnt.sc/hlq3dr

    My website is:

    Home

    #269119
    xkotos
    Participant

    Hi,

    I found the solution to the problem. Now the toolbar changes position at the top of the page.

    Thank you,

    #269104
    xkotos
    Participant

    Hi,

    this problem comes whenever I use a translate plugin. I’ve tried a lot off these plugins and always ι have the same problem. When I login as a user, and the translate plugin is enabled the black line with my info goes over the web page. When i disabled the translate plugin, the toolbar changes position and goes to the top.
    You can see the problem only on mobile display. I put 2 pictures with the example.

    I’ll be grateful if you could resolve it.

    the toolbar is down
    the toolbar is up

    Thank you,

    #268956
    Boone Gorges
    Keymaster

    Very odd – it appears that this too is caused by your theme, as BuddyPress itself just inherits the mobile styling of the toolbar from WordPress (and the WP toolbar looks fine, as shown by your Dashboard screenshot). Try reaching out to the theme author to see whether they’re able to identify the problem.

    #268815
    xkotos
    Participant

    Hi,

    First of all, let me put here my site url http://xlomo.gr/site/
    I use WordPress 4.8.3 and BuddyPress 2.9.2
    In normal mobile mode everything are fine.
    When I login as a user, the black line with my info goes over the web page.
    You can see the problem only on mobile display. I put 2 pictures with the example.
    web page is ok

    problem with toolbar

    Thank you,

    #268671

    In reply to: Non WP login page

    David Cavins
    Keymaster

    This is sort of a big WordPress question that lots of people would like to change, but it’s not that easy. You could try using the plugin Theme My Login, which would need to be applied carefully, as it overlaps with BP a bit. https://wordpress.org/plugins/theme-my-login/ (I have no idea if this is a good plan, you’ll just have to try it.)

    The black bar across the top is a WordPress per-user preference “Show Toolbar when viewing site”. There are many resources on the web about how to disable it/change the behavior:
    https://www.google.com/search?q=wordpress+disable+toolbar+for+subscribers

    #268307
    agusbagus
    Participant

    Dear Support,

    Could you pls assist me with how to make the buddypress shows full width.
    You can check my web http://team.cekcepat.com/ it used up so many blank space at left right and top space. What i try to achive is it shows full width so that it shows more contents.
    And I also want to remove toolbar for log in and log out users. How to do that.
    Many thanks for your assistance.

    Agus

Viewing 25 results - 51 through 75 (of 803 total)
Skip to toolbar