Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 62,376 through 62,400 (of 69,043 total)
  • Author
    Search Results
  • #52965
    gday3012
    Member

    I am a bit confused about 1 thing. Do I create a child theme with the theme buddypress installs with or create a parent theme to make child themes from in the future. I am looking to change colors, layout (collumns) bg image and things like that. Something I read made it sound like any wordpress theme can be the parent, is this correct? I am assuming that using a standard wordpress theme would require adding code from the default theme. Is this correct? I just want to make sure I am understanding this before I try to jump in and work because in the begining I don’t think I was. Thank you,

    Greg

    #52964
    Andy Peatling
    Keymaster
    #52961
    Jeff Sayre
    Participant

    Have a look at this Codex article.

    As a general piece of advice, this is not specifically for the xprofile component, make sure that you check the codebase in the version of trunk that you’re using as there have been a number of changes to functions–some have been renamed, others deprecated, and new ones created. So it is possible that some of the Codex articles on BP loops may be slightly out of date.

    #52960
    Jeff Sayre
    Participant
    #52959
    4thofficial
    Participant

    Thanks DJPaul and Kevin for the quick response. I can’t thank you enough as I know you’re busy men …

    Heres what I’ve done:

    — Moved bp-themes into wp-content/themes/bp-themes

    — Placed bphome and bpmember into bp-themes

    — Deleted the directory bp-themes from wp-content

    Now the entire site is a blank page (http://footiemate.com)?? The only thing I can think of is that I’m not using the correct version of Buddypress. In the BuddyPress readme.txt it says I’m using: Stable tag: 1.0.3 … should that be 1.1??

    Thanks again

    #52941
    4thofficial
    Participant

    Kevin / Gerikg – Thanks so much for the response … but I fear I’m still in trouble :(. Theres definitely something screwed up with how I have the folders structured. I’ve tacken a screenshot of the directory structure here: http://footiemate.com/blog. (bphome and bpmember) are in wp-content/themes.

    You can click around on FootieMate.com. Right now the the main BP homepage and blog are showing up, but the members, groups and blogs are giving me an error (You do not have any BuddyPress themes installed. Please move “/wp-content/plugins/buddypress/bp-themes/” to “/wp-content/bp-themes/” and refresh this page. You can download more themes here.).

    I’ve done that (bphome and bpmember in a ‘bp-themes’ directory in themes) and the entire site gets a white page. In the widgets area I’m told I’m using BuddyPress 1.0.3. I’ve had a base level of success by putting ‘bphome’ into ‘themes’ and ‘bp-themes’ (includes bpmember) into wp-content and the everything shows up, but the CSS styles in members, groups and blogs gets completely lost. Really appreciate any advice you can offer. Thanks

    #52933
    abcde666
    Participant

    I just tested again and it seems the behaviour of the BuddyBar is different when comparing the two websites buddypress.org and testbp.org

    buddypress.org : the mouse-over-effect is behaving perfect and fast.

    testbp.org : the mouse-over-effect is behaving extremely slow.

    #52929
    Kevin Pine
    Participant

    There are two sets of files you need to work with… One for the home page and main blog and another for the member/group/admin pages.

    The home theme is found here: /wordpress-mu/wp-content/themes/bphome

    The member theme is here: /wordpress-mu/wp-content/bp-themes/bpmember

    If you don’t have a member theme in the above location, upload it there. The bpmember base.css is similar and you will have to make most of your CSS tweaks to both. v1.1 uses only one theme for both. More info:https://buddypress.org/blog/news/the-new-buddypress-theme-architecture/

    #52928
    kkeramidas
    Participant

    1. Which version of WPMU are you running?

    2.8.4

    2. Did you install WPMU as a directory or subdomain install?

    directory

    3. If a directory install, is it in root or in a subdirectory?

    subdirectory /blogs/

    4. Did you upgraded from a previous version of WPMU? If so, from which version?

    fresh install

    5. Was WPMU functioning properly before installing/upgrading BuddyPress?

    yes

    6. Which version of BuddyPress (BP) are you running?

    1.0.3

    7. Did you upgraded from a previous version of BP? If so, from which version?

    No

    8. Do you have any plugins other than BuddyPress installed and activated?

    Yes

    9. Are you using the standard BuddyPress themes or customized themes?

    standard themes

    10. Have you modified the core files in any way?

    no

    11. Do you have any custom functions in bp-custom.php?

    no

    12. If running bbPress, which version?

    not running

    13. Please provide a list of any errors in your server’s log files.

    Not quite sure where to find those, will keep looking

    Thanks for your continued help by the way. I am suspicious about the blog subdirectory and think that may be related to the problem since there is already a blogs folder in Buddypress. I started to look for a setting to correct it in the Buddy press setting in the dashboard but couldn’t find any way to change that path to correct things. Perhaps a change in a php file?

    #52918
    thomasmoen
    Participant

    Ok, I will check out the hyperDB as well.

    #52916
    Jeff Sayre
    Participant

    First of all, since you are installing a premium, 3rd-party DB sharding tool, you need to contact the people at WPMU DEV Premium and ask them for support. It seems like all was fine with your standard WPMU + BP install until you switched to using their multi-db plugin.

    Secondly, in case you are not aware, there is a free sharding tool–HyperDB. In fact, this site (BP.org) is using it. Also, there is a great two-part article on how to use HyperDB written by Trent Adams, one of the moderators on this and other WP product forums.

    #52912
    Andy Peatling
    Keymaster

    The best option is to set “Template: bp-sn-parent” in the WP theme’s style.css header. That will allow it to inherit all of the BuddyPress templates.

    If that isn’t an option (perhaps the theme is already a child theme) then you will need to copy over the template files from bp-sn-parent into the wp theme. Just make sure you don’t replace any existing theme files.

    You’ll will probably want to add the user navigation into the theme also, you can add the following lines to the bottom of header.php:

    <?php if ( !bp_is_blog_page() && !bp_is_directory() && !bp_is_register_page() && !bp_is_activation_page() ) : ?>
    <?php locate_template( array( 'userbar.php' ), true ) /* Load the user navigation */ ?>
    <?php locate_template( array( 'optionsbar.php' ), true ) /* Load the currently displayed object navigation */ ?>
    <?php endif; ?>

    Once you’ve done that, BuddyPress pages will inherit all of the theme’s styles and its header and footer. You will of course need to add extra styles since WP themes only handle blog pages.

    You can also try importing the bp-sn-parent screen styles into the WP theme’s style.css file. Depending on the theme, this may help to add layout to BuddyPress pages, but also stay within the WP theme’s look and feel.

    #52910
    gerikg
    Participant

    Click on FORUMS on the top. Scroll down to Latest Discussion, look under “FAQ: How To, Code Snippets and Solutions” the solution is there.

    #52906
    yannux
    Participant

    Everything good execpt for avatar croping

    Nobody have problem with firefox 3.5.2 to crop avatar ?

    #52904
    yannux
    Participant

    Same here, the crop tool doesn’t appear for the first thumb.

    Wp Mu 2.8.4

    BuddyPress Version 1.0.3

    Firefox3.5.2

    Default budypress community theme

    Worked fine with Bp 1.02

    #52901

    My response from the other topic:

    That’s the way it is working currently. Stickies are basically excluded from the directory loop at the moment while Andy figures a way to handle them properly. There’s nothing wrong with your installation.

    #52896

    Same as with 1.0.x.

    There are endless topics discussing how to do it, and a sticky to help you with integration.

    #52895

    Sounds like you didn’t move the files over correctly if it’s still saying 1.0.3. The version number is taken directly from the buddypress/bp-loader.php file itself, so if the file is correct, then so is the plugin.

    #52894

    With the integrated version you won’t have access to the bbPress admin panel to turn them on or off, so external only.

    bbPress being included with BuddyPress is like TinyMCE being included with WordPress. Yes they are applications all their own, but they also live together in a very symbiotic way (without being alive of course.)

    #52893
    Jason Giedymin
    Participant

    If you can verify on http://testbp.org and it’s still bugged out you can open a new ticket referencing this one: https://trac.buddypress.org/ticket/198

    If the sent messages are still bugged by all means re-open it. :-D

    #52891

    In reply to: buddypress and bbpress

    Jason Giedymin
    Participant

    He’s saying that it could be a PHP error causing the issue and to check your error logs. Usually at this point it could be anything.

    I think your next task is do a search on here and mu.wordpress to find out how to enable error logs, logging in general for your particular setup.

    #52886

    In reply to: Dashboard ?

    21cdb
    Participant

    So, will there be some blog post on how to create a dashboard in our themes? Are there any further plans to include this in buddypress 1.1 or 1.2? I think it’s a great improvement compared to the actual situation where profile page shows up when a user is logged in.

    PS: By the way, why is the profile page at position 2 in the userbar and activity on position 1? Shouldn’t it be vice versa because the profile page is the first page that shows up?

    #52880
    Andy Peatling
    Keymaster

    Log out, then log in with this form and try to post if you are having issues:

    https://buddypress.org/forums/bb-login.php

    #52879
    Andy Peatling
    Keymaster

    Matt: make sure you log out, and then log in with this form. See if you can then post.

    https://buddypress.org/forums/bb-login.php

    #52878
    mattkern2
    Participant

    Thanks John. If going from 1.0 to 1.1 is not too difficult I guess I will wait.

    as an aside, any idea why I can’t post in the forum under my actual account?

    https://buddypress.org/developers/mattkern/

Viewing 25 results - 62,376 through 62,400 (of 69,043 total)
Skip to toolbar