Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 35,076 through 35,100 (of 69,104 total)
  • Author
    Search Results
  • #124556
    Paul Wong-Gibbs
    Keymaster

    While you’re thinking about this, remember that 1.7 is going to have templating like bbPress has.

    > Other ideas could be build in some simple theme options like Twenty-Eleven does.
    Decisions, not options.

    aces
    Participant

    I just downloaded a copy of buddypress from the ‘Manual Download’ button on https://buddypress.org/download/ and it was the same as my svn link above.

    If your file is different, then there may be other files that are also different!

    #124554

    In reply to: Janrain Engage tested?

    phirefly
    Member

    voted x3 on this too!

    The other thing I was thinking about looking at was this….

    http://stescodes.com/invitefriends.aspx

    a one-off payment but I’m unsure how complex it would be to integrate…when I asked the developer about buddypress/wordpress they said;

    “It is very easy to integrate our code, we provide sample code in working condition. Once you run the code by settings the API configuration based on your account, you will be able to integrate with your code easily.

    Furthermore, we provide developer guide documentation and also tutorial videos too.

    Note: Please let us know if you need any help or further details.”

    ….not much info lol!

    kols
    Member

    Thanks aces, maybe i´m a little bit slow , but my /bp-themes/bp-default/header.php says just what I wrote before, I download another copy of buddypress to see if it was different but is the same file that I have described to you.
    Should I copy the code that you send me, in my header.php file?
    Thank you!

    aces
    Participant
    #124546
    Chuckschulz
    Member

    I just found a work around. I created the forum topic from within the group, which sidesteps the “which group” question and seems to have worked.

    #124544
    Chuckschulz
    Member

    Same problem here. I must say I am getting very skeptical. I can’t have this kind of nonsense with users. Can someone lend a hand here? Thanks!

    iblbuilder
    Member

    Oh dear, really? That sounds quite a flaw to me!

    If a logged in user goes to register, they get redirected back to the mainpage.

    If I log in as a user without a blo and go to mysite.com/blogs/create it does allow them to add one. But the problem is that in the my sites menu that then appears, they can see a link to the main site blog(which they cant acces, but even still its very confusing) as well as their own!

    Surely it must be a very common occurence for a buddypress site member to want to add a blog, it seems very odd this is a problem?

    Thanks

    Jason

    #124540

    In reply to: BuddyPress Forums

    Here is another screencast with more information related to the issue: http://youtu.be/lcOd5H_fNws

    Still not sure how to resolve the problem.

    saule
    Member

    @charlesponraj did you get this to work finally? It didn’t work for me too

    chr313
    Member

    @DJPaul I also found out that when I favorite a forum post it will not show up in my favorites under my profile. I think definitely bbpress isn’t connected correctly. If you find anything I would appreciate it.

    #124534
    @mercime
    Participant
    #124532
    aces
    Participant

    in the bp-default header ( should be line 46 – 48 )
    `

    `
    replace it in your child theme with something like
    `

    `
    as it is the last parameter, I don’t think false has a comma after it in this context….

    Make sure you back up before any edits in case something goes wrong!

    nb: to use code on buddypress.org put backticks ` (normally above tab key) before and after…

    #124530
    dude
    Member

    so to clarify: in my header.php (child theme) replace..

    wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ‘bp_dtheme_main_nav’ ) );

    with:

    <?php
    if ( is_user_logged_in() ) {
    wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ” ) );
    } else {
    wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘secondary-menu’, ‘fallback_cb’ => false,
    }
    ?>

    I’ve just checked my header.php and it appears to be worded slightly differently actually..? for example:

    false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ‘bp_dtheme_main_nav’ ) ); ?>

    aces
    Participant

    Can you check your server log for php or other errors?

    ie9 developer tools ‘console’ also shows a lot of errors on that particular page…..

    manureloaded
    Member

    @dude Yeah…i tried deactivating all the plugins…but it didnt worked…..

    @aces ….i increased the space limit…but it sometimes shows a blank page….

    #124523
    saule
    Member

    @SBrajesh I tried the codes you gave, but
    I got an error when put in echo:
    Fatal error: Call to undefined method DateTime::diff() in /home/dom/public_html/wp-content/plugins/buddypress/bp-themes/bp-default/functions.php on line 377

    Line 377 is this – $diff= $current_date_time->diff($dob);//returns DateInterval object

    Any idea how to correct that?
    Thanks.

    #124519
    ankurm
    Member

    @liesl1698 paste it in your theme’s functions.php

    #124518
    ankurm
    Member

    thanks @ousep and @r-a-y :D

    #124515

    In reply to: Multisite Install

    antonyw
    Member
    meg@info
    Participant

    Look in header.php of your theme , the code in header.php is look like that

    Code:
    <?php
    /**
    * theme theme_name
    *
    * @package packagename
    * @subpackage subpackagename
    * @since my HTML 5 theme
    */
    ?>
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8" />
    <meta http-equiv="content-type" content="<?php bloginfo(‘html_type’) ?>; charset=<?php bloginfo(‘charset’) ?>" />
    <title><?php bp_page_title() ?></title>
    <meta name="home" content="<?php bloginfo(‘url’) ?>" />
    <meta name="url" content="<?php bloginfo(‘wpurl’) ?>" />
    <?php do_action( ‘bp_head’ ) ?>

    <?php if ( function_exists( ‘bp_sitewide_activity_feed_link’ ) ) : ?>
    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’);?> | <?php _e(‘Site Wide Activity RSS Feed’, ‘buddypress’ ) ?>" href="<?php bp_sitewide_activity_feed_link() ?>" />
    <?php endif;?>

    <?php if ( function_exists( ‘bp_member_activity_feed_link’ ) && bp_is_member() ) : ?>
    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’);?> | <?php bp_displayed_user_fullname() ?> | <?php _e( ‘Activity RSS Feed’, ‘buddypress’ ) ?>" href="<?php bp_member_activity_feed_link() ?>" />
    <?php endif;?>

    <?php if ( function_exists( ‘bp_group_activity_feed_link’ ) && bp_is_group() ) : ?>
    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’);?> | <?php bp_current_group_name() ?> | <?php _e( ‘Group Activity RSS Feed’, ‘buddypress’ ) ?>" href="<?php bp_group_activity_feed_link() ?>" />
    <?php endif;?>

    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’);?> <?php _e( ‘Blog Posts RSS Feed’, ‘buddypress’ ) ?>" href="<?php bloginfo(‘rss2_url’);?>" />
    <link rel="alternate" type="application/atom+xml" title="<?php bloginfo(‘name’);?> <?php _e( ‘Blog Posts Atom Feed’, ‘buddypress’ ) ?>" href="<?php bloginfo(‘atom_url’);?>" />
    <link rel="pingback" href="<?php bloginfo(‘pingback_url’);?>" />
    <?php wp_head();?>
    </head>

    <body <?php body_class() ?> id="bp-default">
    <?php do_action( ‘bp_before_header’ ) ?>
    ..


    <:!– header content –>
    ….

    <?php do_action( ‘bp_after_header’ ) ?>
    <?php do_action( ‘bp_before_container’ ) ?>

    modemlooper
    Moderator

    header.php contains the header code. wp-content/plugins/buddypress/themes/bp-default

    #124501
    sam99077
    Member

    @mercime I´ve the same problem. I´m using single WP 3.2.1 and BP 1.5.1 (BP Template Pack + Followers Plugin). I always get a page not found error when I try to load my followers list, the activity of my followers (and the people I´m following). Problem is gone when I change to bp-default theme. Can you please help, what can I do to make it work with the theme I´m using (mymag)???

    kkradel
    Participant

    The images are blurry like an image is set to progressive and then it doesn’t fully load … Could there be a setting somewhere that is interfering with the image loading fully?

    #124498
    aces
    Participant
Viewing 25 results - 35,076 through 35,100 (of 69,104 total)
Skip to toolbar