Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 16,626 through 16,650 (of 73,981 total)
  • Author
    Search Results
  • #245921

    In reply to: Problems with TopBar

    flopfeil
    Participant

    FINALLY after around nearly 3 weeks I have the solution found by myself.
    May be somebody got this problem too, so here is the fact why i don´t work for me.

    I called my Menu –> “MainMenu” this must be any reserved codeword. Every language got some of these. So he overwrite the buddypress topbar with this.
    I created the same menu and give it another name. Now it works!!!

    🙂

    #245915

    In reply to: Problems with TopBar

    flopfeil
    Participant

    is here anybody who knows where buddypress established the topmenu?
    if i check the to different sites with my inspector tool, i can see he loads the mainmenu and not the topmenu. So i want to know in which php.file buddypress establish the topmenu.

    on the sites where it shows up the right topbar it looks like…

    <div class=”social-header header-color”>
    <div class=”container”>
    <div class=”top-bar”>
    <div id=”top-social” class=”col-sm-12 col-md-5 no-padd”> </div>
    <div class=”top-menu col-sm-12 col-md-7 no-padd”>
    <ul id=”menu-topmenu” class=””>

    and on the other sites, where i have the wrong menu….

    <div class=”social-header header-color”>
    <div class=”container”>
    <div class=”top-bar”>
    <div id=”top-social” class=”col-sm-12 col-md-5 no-padd”> </div>
    <div class=”top-menu col-sm-12 col-md-7 no-padd”>
    <ul id=”menu-mainmenu” class=””>

    so there must be any code from buddpypress which put here the mainmenu.

    Did anyone know where i can change that part of code?

    Henry Wright
    Moderator

    Have a read of the Playing with the user’s ID in different contexts article. It should give you an idea how to get the user’s ID in many of the different situations you’ll come across when using BP.

    Take for example the logged in user, you can use bp_loggedin_user_id() to get their ID.

    #245913
    Venutius
    Moderator

    One plugin that might help with this is BuddyPress Group Extras

    https://wordpress.org/plugins/buddypress-groups-extras/

    William
    Participant

    The most likely reason for this kind of appearance is Bootstrap Classes conflicting with Buddypress CSS classes. For example, if buddypress has a class called “label” and bootstrap also has a class called “label” then bootstrap’s label class will be used in place of buddypress’s label class.

    #245895

    In reply to: Features and Requests

    Michael Bryner
    Participant

    Sorry, but I have to disagree there on the closing threads. I have not been here that much at all except for the styling only requesting and I don’t any deeper than half of the first page and that is not old threads and they are closed after just one response from the moderator that says get something done from the theme author. Is that good support? To me that is not even giving hardly any support and just closing it before we even can say another word.

    I am not even in here every day and still that is the way buddypress, wordpress, and bbpress sites support works. It is not old threads getting closed only. You say my threads are not what should be put in the support. All them been pretty much exactly where they should be request and features is where I asked for features and Ideas is an idea given for the features and the only post that is really out of place, which is not really that far out of place was the survey thread but really if you are this way with a business with normal customers. I would of been gone the first response to my thread being closed and never been back ever again.

    Telling someone that something should be done with a 3rd party theme over the plugin implementation is the wrong way to take it, especially when asking the theme author already and they give a rats *** about adding it to the theme. So to me to go somewhere else and get it done will not do a thing but waste out time. Not saying you did that Paul but your moderator does that. He basically tells us to get it done from something that really is not with the plugin at all and theme authors are not just going to add that feature because you won’t.

    I know you said that it will be and would be foolish not to but talk to you moderator about this because he is the one that is acting like there is no reason in this world that this plugin should not have styling at all.

    I feel sorry for this guy that wants to stay basic. I giving up on this forum if closing a thread after first reply is the way it works here. That is terrible support and surprised you think that is the way it should be, especially if someone is having the same question or issue and they search for that, they won’t be able to do a thing because those threads are never resolved and no answers and closed before they even do get them.

    All those renewed threads about the same exact thing all over again because of it, using all the database is pointless to me. I would never do that to my visitors on my own website on bbpress. I am this close to just uninstalling buddypress and only keeping bbpress on my website. Not all people are made out of money to buy or pay extras for things. I guess I will only get the right answer from Paul and I am either going to have buddypress or not by the time that finally updated buddypress with the so called promise that it will be done.

    Not trying to be an jerk here but telling me that old threads are closed and I open a thread that is not even a day old and says the thread is closed to new replies, is not an old thread. This kind of support in a forum is really bad to me and I would never want unlimited amount of the same threads about the same thing all over my website using up space for no reason. I think I am going to just say goodbye and probably never going to come back to this support forum ever again.

    I already never do anything on WordPress support because they just tell you to go somewhere else when it isn’t another company to ask about WordPress issues. I even don’t go to bbpress support anymore either. Now buddypress is going to be not anymore.

    Goodluck with future releases! Maybe I will stick with buddypress and maybe I will just say heck with it and take it off.

    This is not all towards you Paul but your moderator acting like this plugin needs no styling at all and getting it done through someone that has nothing to do with this plugin is really the most annoying thing someone would do. He acts like there is no other person in this world wants anything on this plugin but left the way it is. A person like that sounds just like the people stuck on Windows XP even with the support gone and just complains that there is no reason to even upgrade to get support.

    Sorry, I am pissed about this and now I am debating so hard whether to keep buddypress or not for his bad attitude towards others about this plugin.

    teruun
    Participant

    And i want to know how buddypress handles with personal activity stream, where is the filter? What process it has until the streams displayed on the page? Could you please provide me some documentation or tutorial about this? Or just tell me which part of the code does this.
    I’m a little confused about how buddypress works.
    Thanks again.

    teruun
    Participant

    Thanks, @henrywright
    So i changed my code to this:

    function buddypress_edit_blog_post($post_id) {
         global $bp; //, $user_id;
         $user_id = wp_get_current_user();
         $post = get_post($post_id); 
         $title = $post->post_title;
         $user_fullname  = bp_core_get_user_displayname($user_id);
    
         bp_activity_add(array(
        'action' => $user_fullname.' updated ' . $title . ':',
        'component' => 'blog_post',
        'type' => 'update_post',
        'primary_link' => get_permalink($post_id),
        'user_id' => $user_id,
        'content' => $post->post_content
         ));
    
    }
    add_action('edit_post', 'buddypress_edit_blog_post');

    I don’t know is it right to use wp_get_current_user() function. But the personal activity stream still doesn’t have my blog post, and the site wide activity stream still has.

    What should I try next?
    Thanks.

    #245882
    Henry Wright
    Moderator

    The BuddyPress username field is mandatory. There’s no way to remove it without breaking functionality.

    Henry Wright
    Moderator

    @paragbhagwat You could always submit a request on Trac to ask that the extra argument(s) you need be passed.

    Ref: https://buddypress.trac.wordpress.org/

    The username and password you use here in the forums will work there too.

    #245836

    In reply to: Problems with TopBar

    flopfeil
    Participant

    Thanks for your help, but its not the solution.

    My TopMenu got the content you see on that screen.

    http://www.pic-upload.de/view-28637544/Top_normal.jpg.html

    I try to explain my problem better.

    The TopMenu works when the Buddypress Plugin is deactivated. Its on all Sites that Menu I want to have.
    After I activate the Plugin on some of the sites(Buddypress specific sites) changes the TopMenu and show the content from the NavigationBar.

    So I think there is a piece of code in any PHP-File which overwrites my TopMenu.

    Any ideas???

    #245832

    In reply to: Problems with TopBar

    Paul Bursnall
    Participant

    From what I can see on a clean install of Kleo/Buddypress, the Top Bar has a menu location assigned to it in WP admin called ‘Top Menu’. This works the same as any other WordPress menu meaning you can add or remove items from that menu.

    In WP admin go to Appearance > Menus and select Top Menu. Under Screen Options (top right) ensure the Buddypress box is ticked (allows you to assign Buddypress links to any menu). You should be able to remove the links you don’t want to show from that menu, then save it.

    If you installed Kleo with the demo data it might be the case that these links were automatically added. But you should be able to remove them to your liking. There’s nothing going on here that Buddypress is automatically doing itself when it’s enabled.

    #245828
    immoon
    Participant

    For some reason, one of the plugins mentioned was conflicting with Buddypress.

    #245827
    Venutius
    Moderator

    Have you tried deactivating all the plugins apart from BuddyPress?

    #245819

    In reply to: oldest first

    shanebp
    Moderator

    Use the sort parameter.

    Activity Loop

    #245818
    Adalinka
    Participant

    @Masterpef- I really like how your profile page looks like.Would it be too much if I ask you how did you create it? Do I create a new page in wordpress and give it a profile name.And than Plugin works the magic? Or is there some code,I need to place in html editor? Or add to theme.php or sth? I am trying to understand how it works.. :-/ Thank you.
    Ps. How much do I actually need to know to build a membership site with BUddyPress? I mean how much of coding? How technical is it? Is there a step,by step detailed tutorial that maybe you have used?

    #245814

    In reply to: How can I contribute?

    Henry Wright
    Moderator

    Hey @venutius

    It’s great to see you’re interested in contributing. Check out the Participate and Contribute article for the various ways you can help out with the project.

    Hope this helps!

    Venutius
    Moderator

    I remember looking at a plugin called something like Buddypress custom profile menu, maybe that would do it for you?

    https://wordpress.org/plugins/buddypress-custom-profile-menu/

    life5000
    Participant

    Hello;

    I have looked all over the web for a couple of days to learn how I can remove/customize tabs on buddypress profile menu easily, and have had no success.

    Can you please tell me how I can remove/hide/customize profile menu tabs without deactivating plugin or modules, like bbpress and notification? I just don’t want a crowded buddypress menu with too many tabs.

    Thanks so much.

    #245798
    Henry Wright
    Moderator

    Looking at the Activity Loop article, there’s 3 steps to this:

    1. Pass display_comments to your loop:

    if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . '&display_comments=stream' ) ) :

    2. Wrap your HTML in an activity class (This is an optional step if you want AJAX to work).

    3. Add the code (see article) inside your loop, below activity-content and above the closing list item tag.

    #245792

    In reply to: Problems with TopBar

    flopfeil
    Participant

    after deactivating buddypress

    http://www.pic-upload.de/view-28637541/Top_no_buddypress.jpg.html
    _________________________________________________________________
    how it should looks like

    http://www.pic-upload.de/view-28637544/Top_normal.jpg.html
    _________________________________________________________________
    wrong content after clicking buddypress content from the dropdown-menu off the topbar,
    it shows the content from the navigation bar, also in the topbar

    http://www.pic-upload.de/view-28637548/Top_wrong_content.jpg.html

    #245788

    In reply to: Problems with TopBar

    flopfeil
    Participant

    http://www.trachtentracht.de/

    thats the site, it only shows up fpr logged in user.
    After creating an account you can click on several links in the topbar all the buddypress links are messed up. For example “Nachrichten” from the dropdown menu.
    Stick for a while with this problem and nobody can handle it.
    I ask the theme support and the wordpress support weeks ago.

    #245783
    Philosopher Rex
    Participant

    probably my final update for this:

    #buddypress #object-nav, #buddypress #subnav, #buddypress #groups-directory-form .item-list-tabs {outline:0;margin:0;text-align:center;}
    #buddypress #object-nav ul, #buddypress #subnav ul, #buddypress #groups-directory-form .item-list-tabs ul {display:table;width:100%;table-layout:fixed;font-size:.65em;}
    #buddypress #subnav ul {width:98%;font-size:.6em;margin:0 1%;}
    #buddypress #object-nav li, #buddypress #subnav li, #buddypress #groups-directory-form .item-list-tabs li {display:table-cell;float:none;text-align:center;height:2em;padding-top:.5em;background-color:#ddd;border:1px solid #c6c6c6;border-bottom: 1px solid #999;text-decoration: none;outline:0;margin:0;}
    #buddypress #object-nav li a, #buddypress #subnav li a, #buddypress #groups-directory-form .item-list-tabs li a{display:block;text-align:center;word-wrap: break-word;padding:0!important;color:#888;text-shadow: 0 0 1px #ddd;outline:0;}
    #buddypress #object-nav li a:hover, #buddypress #subnav li a:hover, #buddypress #groups-directory-form .item-list-tabs li a:hover {color:#000;outline:0;text-shadow: 0 0 1px #fff;}
    #buddypress #object-nav li.current, #buddypress #subnav li.current, #buddypress #groups-directory-form .item-list-tabs li.selected {border-color:#999;border-bottom-color:transparent;background-color:transparent;}
    #buddypress #object-nav li.current a, #buddypress #subnav li.current a, #buddypress #groups-directory-form .item-list-tabs li.selected a {pointer-events:none;cursor:default;color:#222;font-weight:700;}
    #buddypress #object-nav li.current a:hover, #buddypress #subnav li.current a:hover, #buddypress #groups-directory-form .item-list-tabs li.selected a:hover {color:#222;font-weight:700;}
    #buddypress div#subnav.item-list-tabs {margin:0!important;padding-top:1em;}
    #buddypress div.item-list-tabs ul li a span {display: block!important;border:none!important;background-color:transparent!important;padding:0!important;margin:0!important;}
    #buddypress select#activity-filter-by {font-size:.8em;}
    #245781
    teruun
    Participant

    Hey, sorry I’m new to Buddypress too and I can’t help you. But I’m also interested in your questions. Had you got any answer for you question? If it is yes, I want to know how you solved these problem. If it’s not, let’s find it out together.

    #245780
    Venutius
    Moderator

    OK, I’ve managed to replicate the problem on my test site. It seems to be related to comments on older posts.

    I’m running 2015 and Buddypress, that’s all.

    Comments on older posts are not showing in the activity feed when it is set to Everything, they can only be seen if comments only are selected in the filter.

    Comments on recent posts are shown under the update for that post.

Viewing 25 results - 16,626 through 16,650 (of 73,981 total)
Skip to toolbar