Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 36,326 through 36,350 (of 68,918 total)
  • Author
    Search Results
  • #120819
    Boone Gorges
    Keymaster

    Sounds like it might be a bug. Could you open a ticket at http://trac.buddypress.org? Use the same credentials you use on this site.

    KylieSocial
    Member

    There is an activity page and a place to post a status, but when you click ‘Post Status’, it takes you to http://example.com/activity/post – which doesn’t exist so displays a Page not Found. The http://example.com/activity page does exist and is functional.

    #120816
    Boone Gorges
    Keymaster

    I see some widgets! Did you figure out the issue?

    #120815
    pixelsandtea
    Member

    I did as @mercime suggested, I installed the BP Template Pack. After I activated it and set it up I no longer had access to the network admin area! Luckily though I had my wp-config and .htaccess files up to date and backed up on my computer so I just ftp’d it into place overwriting the previous files. Now since I did that, I no longer have access to my dashboard at all! But at least I could now load the buddypress pages ok.

    Thankfully, it’s only a brand new install so I haven’t really lost anything but I will have to re-install the whole network again and I won’t be using the template pack again.

    And @aces, it’s because the template pack fixed the front-end loading issue that I can’t see how the memory limit would be preventing buddypress from loading.

    Boone Gorges
    Keymaster

    > But, the ‘activity/post’ page is still missing, so users can’t post status updates.

    Does this mean that there is no page when you go to http;//example.com/activity? Have you activated the Activity component? Or do you mean that there is no form for users to enter activity updates on the existing page?

    #120813
    goldmember
    Member

    @andrewteg, I’m using 1.5. Perhaps thats why its not working? If that changes things and there’s a way to do this for 1.5, I’d like to hear it, and I’ll stick with Buddypress. If not, I’ll drop Buddypress and switch to bbPress.

    I’ll send you FTP info for the plugins folder now.

    KylieSocial
    Member

    I was using Jooc and now switched to bp-default and the duplicate pages have gone – thanks :)

    But, the ‘activity/post’ page is still missing, so users can’t post status updates.

    Thanks Mercime for your quick response.

    #120811
    aces
    Participant
    #120810
    echoman
    Participant

    I really do try and be as patient as possible. But atleast if no one has a reply. Tell me who or where i can go to get a response.

    #120807
    Chido
    Member
    #120806
    linick
    Member

    I was going to post the same problem…

    I get this error:

    Fatal error: Call to undefined function bp_activity_get_permalink() in /wp-content/plugins/buddypress/bp-members/bp-members-template.php on line 590

    I’m using the default theme

    @mercime
    Participant

    What theme are you using? Could be that it needs to be updated.

    Re duplicate pages of Members, Forums, Activity and Groups – do they have the same content as the original pages with same name?

    #120803
    Paul Wong-Gibbs
    Keymaster

    This works for me.

    #120802
    rtysmith
    Member

    Yea, with default theme, same issue, with activity stream deactivated

    kkradel
    Participant

    Thank YOU!!!

    Finally something that worked!

    I had backed up all of my BuddyPress files before I upgraded so I just replaced the bp.css file in the plugins/bp-template-pack.

    Now, on to see if I can make BuddyPress do what *I* want it to do rather than having it eat up my whole site.

    #120794
    @mercime
    Participant

    BP 1.5 is a major release. closing 998 tickets of bug and enhancement reports. Theme/plugin devs are currently updating themes and plugins. In the meantime, you can also use a WP theme and install the BP Template Pack plugin to make your WP theme compatible with BuddyPress

    @mercime
    Participant

    @kkradel bp.css is enqueued after your style.css and bp.css has this in stylesheet
    `#wp-admin-bar .padder {
    width: 95% !important; /* Line up the admin bar with the content body in this theme */
    }`

    The easiest thing to do is to
    1 – download a copy of bp.css https://plugins.svn.wordpress.org/bp-template-pack/tags/1.2/bp.css
    2 – correct the width of #wp-admin-bar .padder to 100%
    3 – upload to server in plugins/bp-template-pack to override old bp.css

    #120788
    Boone Gorges
    Keymaster

    @seluvega Make sure that you have activated a theme other than BuddyPress Default on the main site.

    #120787
    seluvega
    Member

    @boonebgorges Im having a really weird issue with multisite and buddypress! I ve define a diferent root blog for buddypress install, and everything looks fine… but, of course there is a but!, on main site all my links goes to blank page, not the home page but all news, i ve tried to do everything like touching the htaccess, or change the permalinks even trying to eliminate the blog slug but has been imposible to make it works! any clues? Thanks!

    abutterworth
    Member

    SO I didn’t receive any answers on this but I did manage to struggle my way through and I will leave the solution here for those with the same question.

    To add sub_nav links in buddypress 1.5 groups do the following:
    1) bp-core-template.php
    register the groups
    ///////////////
    function bp_is_group_stock_quote() {
    if ( bp_is_groups_component() && bp_is_current_action( ‘stock-quote’ ) )
    return true;
    return false;
    }
    //////////////////

    2) bp-group-loader.php
    define the subnav item:
    /////////////////
    $sub_nav[] = array(
    ‘name’ => __( ‘Stock Quote’, ‘buddypress’ ),
    ‘slug’ => ‘stock-quote’,
    ‘parent_url’ => $group_link,
    ‘parent_slug’ => $this->current_group->slug,
    ‘screen_function’ => ‘groups_screen_group_stock_quote’,
    ‘item_css_id’ => ‘stock’,
    ‘position’ => 50,
    ‘user_has_access’ => $this->current_group->user_has_access
    );
    ///////////////////////

    3) bp-groups-screen.php
    define the action that clicking will elicit:

    function groups_screen_group_stock_quote() {
    global $bp;

    if ( $bp->is_single_item ) {
    // Refresh the group member count meta
    groups_update_groupmeta( $bp->groups->current_group->id, ‘total_member_count’, groups_get_total_member_count( $bp->groups->current_group->id ) );

    do_action( ‘groups_screen_group_stock_quote’, $bp->groups->current_group->id );
    bp_core_load_template( apply_filters( ‘groups_template_group_members’, ‘groups/single/home’ ) );
    }
    }

    The URIs above all go to the groups/single/home because there it loads the header etc and includes the body file depending on the action. So add your pages to that area and then create them in the your_theme/groups/single directory. For the above example I created theme/groups/single/stock-quote.php.

    Cheers

    @r-a-y, can i just add the following code to my child theme function.php and define my custom css in style.css as i dont want to use default theme css.

    `if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
    function bp_dtheme_enqueue_styles() {}
    endif;`

    i will like to use my custom css.
    Regards

    #120780
    echoman
    Participant

    Sorry i should put complete error i received.
    Fatal error: Call to undefined function is_site_admin() in /home/echoman/public_html/wp-content/plugins/bp-phototag/includes/bp-album-core.php on line 305

    #120778
    dosch
    Member

    Now I only have the problem that the grey Buddypress-bar is always showing. Even when I am on a dashboard of another site…

    #120772
    Andrew Tegenkamp
    Participant

    That’s odd ~ are you using 1.5 or on the 1.2 branch? Guess I shoulda asked that before ;)

    Regarding the forums, you may need to disable BuddyPress since the forum plugin bbPress uses the same code as BuddyPress for its forums ~ it’s all bbPress.org and it creates users as WP users so there are plenty of plugins to email all your users FWIW.

    If you do feel comfortable with me FTP’ing into the site, feel free to send me some FTP info and I can take a look. Should only need access to the plugins folder to debug the redirect thing ~ I’m very curiuos why it doesn’t work, but it sounds like BP may be overkill for this project since bbPress is now available so I would understand you heading a different direction too.

    #120769
    dosch
    Member

    Brilliant! That worked!
    Thanx so much!

Viewing 25 results - 36,326 through 36,350 (of 68,918 total)
Skip to toolbar