Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 58,376 through 58,400 (of 94,540 total)
  • Author
    Search Results
  • #110195

    In reply to: FATAL ERROR!!

    Virtuali
    Participant

    Go to your wordpress Admin Dashboard, and go to “Add plugin” then search “Buddypress”. Install the plain and simple Buddypress plugin first, then activate the template pack.

    #110194

    In reply to: Password Reset

    Virtuali
    Participant

    Not a buddypress issue. Use: https://wordpress.org/support/

    Virtuali
    Participant

    Ah, the famous 404 not found :)

    Try this reference link: https://codex.buddypress.org/troubleshooting/navigation-links-return-404-errors/

    #110189

    In reply to: FATAL ERROR!!

    Virtuali
    Participant

    It means the that the function isn’t being recognized, do you have the buddypress plugin installed? The template pack can’t work without the actual plugin :)

    #110188
    pcwriter
    Participant

    @JamieWade

    This thread looks like it might have a workable solution for bp-custom.php. I haven’t tried it though…
    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/changing-default_subnav_slug-for-activity/

    #110183

    In reply to: Inaccessible Group

    Boone Gorges
    Keymaster

    Hm. Try installing http://teleogistic.net/code/buddypress/bp-group-management/ and see if you can get to the group that way.

    #110177
    kenrichman
    Participant

    @embergermedia – just wondering if you’ve had a chance to look into this?
    Fortunately my site won’t be using the activity stream – yet!

    #110176
    CIX
    Participant

    Thank you mercime. Sometimes we miss the obvious.

    #110175

    In reply to: Google Translate

    kenrichman
    Participant

    @aces GENIUS!!

    thank you . . .

    #110174

    In reply to: Fatal error

    chembro303
    Member

    I can confirm that @benklocek‘s fix made the error go away for me, but I don’t think the plugin is working still. I’ll have to investigate further. At least no more fatal error!

    #110173
    @mercime
    Participant
    #21349
    megha.sharma
    Member

    I have developed one site using wordpress and buddypress. It is running very slow can anyone tell me how it can be make fast to load and run the site?
    My site url is
    http://www.openideasforum.org/

    Thanks

    #110162
    @mercime
    Participant

    @rickgoz Yes, it is possible to get two different menus in BP. The simplest way is to surround the links for members only with conditional

    “
    // the links
    “

    An example using main navigation links in header.php of bp-default theme http://pastebin.com/uGQHhm8r

    #110158
    tindell
    Member

    @rogercoathup I have another strange issue, I’m using a front end editor so users can create blog posts http://perishablepress.com/user-submitted-posts/ I modified that using some recommended code so that the image attached will be set as a post thumbnail. Which works as it should the image is there with the post when I check the post and it appears everywhere I call for the post thumbnail such as the home page. The only place it doesn’t appear is in the Buddypress activity stream next to the excerpt. Interestingly if I go and edit or update a post that I originally created with the front end editor, the thumbnail suddenly appears in the buddypress activity stream as it should. Any thoughts on what might be going on?

    #110157

    In reply to: Hide Admin

    explanetome
    Member

    @dmanthony : cool. not sure that I ‘ve understood where I should enter 99 to hide admin … ? :/ merci

    #110155
    Roger Coathup
    Participant

    @tindell:

    adding the excerpt should be straightforward – around line 32 in my pastebin code (from page 1), after you’ve assigned the thumbnail to the activity_content – you’ll need to do something like:

    (for standard WP excerpt):

    $activity_content .= $post->post_excerpt;

    (for BP excerpt):

    $activity_content .= bp_create_excerpt ($post->post_content, 100) // to get the first 100 characters

    Note: I might have the syntax wrong on the BP (doing it off the top of my head) – so, you may need to check the function out, and experiment a little

    #110154
    Timothy Tarmon Jr
    Participant

    thanks @janismo, and you’re correct. If you have a child theme then it would be best to post to those files.
    I forgot about child themes when i took on this test. definitely something i should remember.

    #110153
    tindell
    Member

    I have the post thumbnail working for buddypress blog posts activity using the code from @rogercoathup but I’m struggling to figure out how to also add the content excerpt with it. Any help would be great, I imagine it’s quite simple I just don’t have a clue how to add it. Hopefully this will help other people who might be struggling with the same problem. I’m happy with the default auto excerpt from buddypress so long as I can limit the amount of characters. Thanks.

    #110152
    James
    Participant

    hi @timothyjunior nice update, definitely will try.
    messing with core files isn’t smth terrible, all you should have is child theme of bp-default.

    #110150
    Timothy Tarmon Jr
    Participant

    ok, break out notepad++ or any text editor and make back ups these two files:
    – /wp-content/plugins/buddypress/bp-themes/bp-default/activity/entry.php
    -/wp-content/plugins/buddypress/bp-themes/bp-default/header.php

    add this to your header.php file within the head section :
    `

    `

    now locate entry.php and replace : `

    `
    with this code :
    `

    $(document).ready(function(){

    $(“li#activity- div.activity-comments ul”).hide();

    $(“li#activity- a.acomment-reply”).click(function(){
    if ( $(“p.collapse-“).css(“display”) == ‘none’ ){

    $(“p.expand-, p.collapse-, li#activity- div.activity-comments ul”).toggle(100);

    }
    return true;
    });

    $(“p.expand- a”).click(function(){

    $(“p.expand-, p.collapse-, li#activity- div.activity-comments ul”).toggle(100);
    return false;

    });

    $(“p.collapse- a”).click(function(){

    $(“p.expand-, p.collapse-, li#activity- div.activity-comments ul”).toggle(100);
    return false;

    });

    $(“li#activity- input[name=ac_form_submit]”).click(function(){

    if ( $(“p.collapse-“).css(“display”) == ‘none’ ){

    $(“p.expand-, p.collapse-, li#activity- div.activity-comments ul”).toggle(100);

    }
    return true;
    });

    });

    `

    heres a little css to work with:
    `.expandable {
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    background: none repeat scroll 0 0 #F4F6F8;
    border: 1px solid #EEEEEE;
    margin-bottom: 2px;
    text-align: center;
    text-shadow: 1px 1px 1px #FFFFFF;
    }

    .expandable p {
    margin: 0px;
    }`

    remember to always back up your files, hopefully someone makes a plugin with this functionality so we can stop messing with the core of buddypress.

    *Can’t believe that took me 5 hours lol

    #21348
    Donald McIntyre
    Participant

    Hello! It doesn´t work on my site, editor does.

    Any suggestions?

    Thx!
    donmcint

    #110146
    Donald McIntyre
    Participant

    Friends should be able to be called other names like: contacts if its a business networking site like I did with mine, partners if it is a closed partership intranet for a lawfirm or accounting fir, students, collegues, etc. there should be an option wher you put something or frieds is default. Groups is groups, but the additional functionality to add is very poor, group wiki does not assing a default wiki theme, group blog does not assign a default blog theme, etc Admins sgould be able to choose the default theme for these addons…

    @mercime
    Participant

    This is the first time I’ve heard about this kind of behavior on a default installation even in subdomain structure. Deactivate all plugins including BuddyPress, mu-plugins and bp-custom.php as well if you have them and change theme to default twentyten theme. Clear cache. See if same behavior persists.

    If it only happens with BP installed, then https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/when-asking-for-support/

Viewing 25 results - 58,376 through 58,400 (of 94,540 total)
Skip to toolbar