Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 64,751 through 64,775 (of 69,039 total)
  • Author
    Search Results
  • #46498

    In reply to: buddypress + p2 theme

    Paul Wong-Gibbs
    Keymaster

    Hey, I’ve just written to and received an email from one of the guys – Noel – who’ve done the P2 theme and he seems willing to look at some additions to better support plugins and widgets that rely on what are otherwise standard filter actions.

    The above works as an interim but hopefully at next weekend I can go over it all and check things properly, then feed back to Noel.

    #46497
    Jeff Sayre
    Participant

    Adding to what John is saying, you should visit the Custom BuddyPress Loops codex page as well.

    #46496

    In reply to: buddypress + p2 theme

    Paul Wong-Gibbs
    Keymaster

    Ok, so this is with the current download-able version of P2 (not a trunk version):

    functions.php – in function prologue_new_post():

    //Find these two lines at the bottom of the function:

    echo $post_id? $post_id : '0';

    exit;

    //Above them, put this:

    if ( $post_id ) do_action( 'edit_post', $post_id, get_post( $post_ID ) );

    functions.php – in function prologue_new_post_noajax():

    //Find these two lines at the bottom of the function:

    wp_redirect( get_bloginfo( 'url' ) . '/' );

    exit;

    //Above them, put this:

    if ( $post_id ) do_action( 'edit_post', $post_id, get_post( $post_ID ) );

    riversj
    Participant

    hmm … that’s a lot more straight forward than what i found. cool :)

    #46491

    It’s actually quite easy to do this. I recommend getting comfortable with the functions that BP introduces to the templates, which can usually be found in buddypress/bp-core/bp-core-templatetags.php. There are some others, but those will be your friends.

    Some of them are wrappers for WPMU functions, and others are BP specific. Each plugin also has a *templatetags.php file that includes more functions to component specific output.

    Spend some time looking through the bphome and bpmember themes to get an idea of how those functions are used, and you’ll be on your way to making a custom theme in no time.

    #46489

    In reply to: No 404, Just Shows

    pierce2
    Participant

    Hey John:

    My host is HostGator, and yes, I am using it in a subdirectory versus the main directory or a sub domain. No, I have never installed anything that would have changed the URL structure of the app, unless BuddyPress would have done this… And yes, I’m not getting a white screen of death, instead I’m getting a totally empty page. Have you been able to fix this?

    #46486

    In reply to: No 404, Just Shows

    Just noticed this too on one of my installs. Who is your web host? Are you by chance running BuddyPress in a subdirectory?

    Looks like you’re not using any plugins at all? Were you at any point? Something that additionally re-writes URL’s like qTranslate or the like?

    Correct me if I’m wrong, but you’re not getting a blank screen (white screen of death), you’re getting what looks like a totally empty blog page, with no widgets, no side bar, just a header and a footer.

    Right?

    #46483

    In reply to: No 404, Just Shows

    Jeff Sayre
    Participant

    Okay, to recap:

    • You are running a new install of WPMU 2.7.1 with BuddyPress 1.0
    • You’ve activated BuddyPress
    • You have no other plugins installed and activated
    • You are using the bphome and bpmember theme
    • You do not have any errors AT ALL in your server’s log files
    • You’ve installed WPMU as a subdirectory install
    • But, you are not positive if WPMU was working before you installed and activated BP

    Now, if I understand your issue correctly, when you visit your domain, you can see the home page without any issue. It works fine. But when you click on any link it brings up a blank page without a 404 message.

    Or, is it that everything works fine. You can see the home theme and get to the member theme without any problem. You are only seeing this issue when you provide a bogus url. It is only then that you get the blank screen? So, you are wondering why it is not a 404 page.

    #46482
    malcan2009
    Participant

    Hi Jeff,

    I tried putting bpmember but it would not load so I have deleted buddypress and will try again and use bpmember before using any other theme to see if this will work!

    I will let you know how I get on!

    Mal

    #46477

    In reply to: Some Design Questions

    Jeff Sayre
    Participant

    I am wondering if there is some file for the Main Theme that comes bundled with BuddyPress

    There are two default themes that come with BP–the bphome theme and the bpmember theme.

    My standard caveat when creating custom themes from the default themes:

    Make sure that you make a copy of both bphome theme and bpmember theme. Your customizations should be done in copies, not the original. That way, if you have issues with your custom themes (and we all do when working on customization), you can switch back to the standard BP themes to see how things should work.

    Head Bar Going Across the Screen

    With regards to your second issue, this thread may help

    #46476

    In reply to: No 404, Just Shows

    pierce2
    Participant

    Jeff:

    Yes, I believe that option is selected. It says “BuddyPress Default Member Theme”, whatever that is.

    #46475

    In reply to: No 404, Just Shows

    Jeff Sayre
    Participant

    I believe that thread is more about the user getting 404 errors. My problem is that I’m not.

    Pierce2-

    You’re correct! My mistake.

    Okay, do have the the bpmember theme selected in WPMU’s backend?

    BuddyPress > General Settings > Select theme to use for BuddyPress generated pages

    #46473

    In reply to: No 404, Just Shows

    pierce2
    Participant

    Jeff:

    While I may be wrong, I believe that thread is more about the user getting 404 errors. My problem is that I’m not. ;) On any URL you type (/buddypress/asdaosdasd), it just shows up a blank page saying nothing.

    #46472
    Jeff Sayre
    Participant

    @Dabomb

    Good luck with the customizations!

    If this issue is resolved, as best it can be given the nature of your topic, please set the light to green above.

    #46471
    dabomb
    Participant

    Jeff, yea I figured we would have to customize almost all of it, but we have been doing that with wordpress for about 6 months now on the many sites we have done. I talked to some folks about it at WordCamp San Fran this weekend. I figured I would as the pro’s in here just to be sure.

    Jeff, are there some basic instructions that might outline what we need to use from the buddypress files in the wp files for the theme?

    #46470
    Jeff Sayre
    Participant

    You can use any WordPress theme for the home theme.

    But, to have success integrating it with BP, you’ll need to copy the functions.php in /bphome/ to your new home theme’s functions.php file. Also, there are certain code elements in the header.php file of the /bphome/ theme that you’ll need to add to your own home theme.

    You may then also want to design a custom member theme that takes the look and feel of your home theme.

    #46469

    In reply to: Change Member Theme

    Jeff Sayre
    Participant

    There is no option called “BuddyPress”, under “Site Admin” menu.

    That is correct.

    BuddyPress has its own menu grouping found at the very bottom of the menu group column. It is just below the Settings menu grouping.

    #46468

    In reply to: No 404, Just Shows

    Jeff Sayre
    Participant

    Pierce2-

    Thanks for the details.

    Carefully read this thread and see if that solves your problem. Post back in this thread either way.

    #46467
    Jeff Sayre
    Participant
    #46466
    Jeff Sayre
    Participant

    buddypress theme as the main theme from buddydress (shout) but still I canot get the directory blogs to show the list when I click on the blogs

    Does it work when using the default member theme, bpmember?

    #46464
    aran
    Participant

    But to get the forums to look as though they’re part of your BuddyPress, do you need to do something with the forums theme locally?

    If I put a link into the navigation bar at the moment, it takes me to the bbPress installation which looks completely different to the BuddyPress installation.

    This site (buddypress.org, I mean) seems either to have integrated the call to the forums or made the forums look like the BuddyPress theme.

    Anyone able to give me some pointers?!

    Thanks in advance for any clues…;-)

    #46463

    In reply to: No 404, Just Shows

    pierce2
    Participant

    Hey Jeff:

    Sorry I didn’t post that originally, didn’t exactly see the thread…

    1. Which version of WPMU you are running

    2.7.1

    2. Whether you’ve installed WPMU in a subdirectory or as a subdomian

    Subdirectory

    3. Whether you upgraded from a previous version of WPMU. If so, from which version.

    Nope, new install.

    4. Whether WPMU was functioning properly before installing/upgrading BuddyPress

    I suppose

    5. Which version of BuddyPress you are running

    Latest (1.0)

    6. Whether you have any plugins other than BuddyPress installed and activated

    Nope

    7. Whether you are using the standard BuddyPress themes or customized themes

    Standard

    8. If running bbPress, which version

    Not using it (tried it, too hard to install). ;)

    9. A list of any errors in your server’s log files

    N/A

    jfcarter
    Participant

    Whatever theme you want to be the default for your blogs needs to be put in the ‘default’ folder in the wp-content > themes.

    If you want to use the buddypress home theme for the blogs copy it (with your customizations) into the default folder. The folder needs to stay named Default. When WPMU/BP creates a blog, it will use whatever the Default theme is.

    All the best to you!

    Rich Spott
    Participant

    I just thought, in case anyone was wondering…

    I started a server from scratch (Ubuntu Hardy, Apache 2, PHP 5 MySQL 5) and installed a fresh WPMU 2.7.1 with a brand new bare database, only using the default theme w/out any plugins (w/out buddypress too)…and was STILL able to reproduce the internal redirect.

    I then thought to see if other MU installs would react the same way…

    so I tested these (plus about 30 others, not all Buddypress sites, some just MU installs)

    http://bp-dev.org/wp-cotent/plugins/bp-core/images/mystery-man.jpg

    and…

    http://www.flokka.com/wp-cotent/plugins/bp-core/images/mystery-man.jpg

    (I misspelled “wp-cotent” and the error came)

    It happened on MOST WPMU installs (buddypress.org and WordPress.com returned 404 errors)

    I realize this is a WordPress Mu issue, so I reported on their forums

    https://mu.wordpress.org/forums/topic/12676

    But if anyone has an idea as to make these errors a 404 like buddypress and wordpress.com do, Please Help.

    #46458
    Paul Wong-Gibbs
    Keymaster

    @Peterpan77 – please do not shout. No-one replied to your last post a week ago, and shouting won’t have convinced anyone otherwise.

    If you do not have exactly the same problems that Sugarmindy has, please start a new topic.

    @Sugarmindy – most of this thread consists of posts you have made. Personally I find it very hard to collect and compile all of your info in my head. Can I suggest we start over? Please reply here providing the info we have asked for at https://buddypress.org/forums/topic.php?id=2674 and summarise your problems again, like you did in the first post (if they are still relevant). Thanks

Viewing 25 results - 64,751 through 64,775 (of 69,039 total)
Skip to toolbar