Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 51,176 through 51,200 (of 94,540 total)
  • Author
    Search Results
  • 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
    #124496
    r-a-y
    Keymaster
    #124494
    intimez
    Participant

    Thank you for the suggestion @etivite

    Sorry I should have mentioned it in my original post. I tried WP Google+ Connect and it didn’t work for me. I posted my issue in that plugin group on wp but no responses so far.

    Do you know of alternatives?

    #124493
    rich
    Member

    WP Google+ Connect

    #25735
    #25734

    Topic: Security issues

    in group forum Requests & Feedback
    lifemore
    Participant

    I am just wondering if Buddypress has a specific way to approach security issues. If not, should we use a WordPress security plugin? Which plugin should be the best option then?

    Thank you so much for ideas.

    chr313
    Member

    Thanks @DJPaul for the reply, that’s what I thought as well that it worked right out of the box. I tested the groups with forums with another install I had and those would post on the activity stream. But neither install would show the blog mentions or blog comments.

    Thanks again :)

    DavidWS
    Member

    Yes, the infamous “There was an error saving group details. Please try again” when attempting to create groups appeared on my Buddypress installation. I’ve searched for a fix for this error for probably 2days to no avail in these forums and in Google. After teetering on the borderline of insanity and after a bunch of var_dumps and searching, I was able to locate the issue and fix it (for my site at least :)).

    This may be different depending on your site and installation, but it is something to take a look at;

    In the file wp-content/plugins/buddypress/bp-groups/bp-groups-classes.php, take a look at your data inserts starting somewhere around line 98;

    In the original /bp-groups-classes.php file, there is/are only 7 table columns defined, see below

    $sql = $wpdb->prepare(
    “INSERT INTO {$bp->groups->table_name} (
    creator_id,
    name,
    slug,
    description,
    status,
    enable_forum,
    date_created
    ) VALUES (
    %d, %s, %s, %s, %s, %d, %s
    )”,
    $this->creator_id,
    $this->name,
    $this->slug,
    $this->description,
    $this->status,
    $this->enable_forum,
    $this->date_created
    );

    Depending on what plugins you may be using, this file may have changed and been modified to include additional table columns. In my particular issue, I noticed that there was a “details” column that was added by one of my plugins, when this happened the number of columns changed, but there was never a new format value added for that column.

    (For those of you who are not coders and are not sure what format values are, those are those little “%d” or “%s” values. They basically tell the database what kind of info are in those columns; d – data, s – string, or f – float. For more information read over this page http://codex.wordpress.org/Class_Reference/wpdb, and possibly read up on data types in PHP.)

    To fix my issue, I simply added another format value and I was able to submit successfully without any issues. If you are running into this problem, I would suggest taking a look at this file and comparing it to a default Buddypress file to see what changed, and then make the necessary modifications.

    Hope this helps someone and is useful information. ;)

    #124489
    Paul Wong-Gibbs
    Keymaster

    This site has 66,085 members currently. At my day job, I work on http://my.telegraph.co.uk/ which has 93,544 members currently.

    #124488
    Paul Wong-Gibbs
    Keymaster

    This must be part of your custom theme; it’s not part of BuddyPress core.

    #124487
    @mercime
    Participant

    Cool, glad it worked out for you :-)

    Method 1 works all the time for all WP themes, while method 2 works for some WP themes depending on HTML structure.

    Method 2 in short, uses the WP functions available for themes. Look at /activity/index.php and you’ll see header(‘buddypress’), sidebar(‘buddypress’) and footer(‘buddypress’) in the template files. If there’s a header-buddypress.php, in the WP/BP theme folder, then the BP template file would use header-buddypress.php. If there’s none, then the BP template file would use header.php by default.

    TMA works with either method 1 or method 2. I gave the solution for method 2 because the HTML structure of TMA was suitable for that. Method 2 saves you from having to “fix alignment” for 16 BP template files again (which you have to do in method 1) when the BP Template Pack plugin is upgraded.

    #124480
    dude
    Member

    the mobile menu is just for the mobile version of the site via the buddypress mobile plugin
    I don’t want the mobile menu being ‘hidden’ from logged-out mobile users really, mainly desktop users.

    I’ve put some mods in the activity-loop etc for keeping activity updates, profiles and members, groups, and forum directories ‘garden-walled’ as such so may have that angle covered?

    #25728
    mwspano
    Participant

    I have used BuddyPress before ( http://musicapitol.com/ ) and had no problem with the pages when I created it. My most recent site however worked perfect except for the Register page. I know it was created in the install wizard for buddypress, but no button was on the minu and when i enter the url directly it redirects me to the home page. the website is http://elderscrollsfansite.com/ if you want to take a look.

    Thanks so much :)

    #124479
    aces
    Participant

    I’m not sure what you mean – but according to https://codex.wordpress.org/Function_Reference/wp_nav_menu you could have ` ‘fallback_cb’ => false,`

    I don’t know how you are doing the mobile menu, but couldn’t you just have $current_user logged in and out mobile menus?

    If someone can guess the page such as activity, then just hiding the menu won’t stop them getting in anyway.

    #124478
    dude
    Member

    @aces just had a thought! instead of calling up the ‘secondary-menu’ would it be possible to void out / null the request to fallback on no menu at all..?

    i.e. – => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘no-menu’, ‘fallback_cb’ => ” ) );

    or – => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘//’, ‘fallback_cb’ => ” ) );

    aces
    Participant

    @manureloaded

    You wrote: some times it ends up showing a blank page

    https://codex.buddypress.org/troubleshooting/blank-pages/ ?

    dude
    Member

    sounds like a plugin conflict?

    have you tried de-activating your plugins one by one to see if one of them is causing the problem?

    #124473
    dude
    Member

    single menu..?

    I really think I gotta create the third theme location first, because the fall-back call will end up showing logged-out visitors my mobile menu which is a duplicate of the primary location so in theory my menu tabs will still be on display

    #124471
    3dperuna
    Participant

    Figured it out… incompatible plugin (Theme-My-Profile, for what it’s worth). Deactivated it and the world returned to normal*.

    * Realize that “normal” is a relative term.

    manureloaded
    Member

    http://socialnetwork.youthstrings.com/activity

    please see the link…

    The problem is that while clicking on ALL MEMBERS, FOLLOWING or My FRIENDS or anyother tag….the activity updates are not loading fully and some times it ends up showing a blank page. sometimes it shows only few updates.

    While clicking LOAD MORE it is not working even. Thats the reason why i removed this page.

    I tried changing to default theme but didn’t worked. cleared cookies but, did not worked….

    Is there any way clearing both the bugs…can anyone help me clearing the ACTIVITY STREAM and LOAD MORE bug

    Thanks in advance…..

    #25726
    Magi182
    Participant

    Hey all, I’m interested in implementing buddypress for a health and wellness community. Does anyone have experience running a Buddypress installation 20,000+ user accounts? I have done several buddypress installs, but most have been for user groups that are < 2,000 members. Folks who administrate larger communities, what kinds of numbers do these larger buddypress communities support? Thanks for any feedback!

Viewing 25 results - 51,176 through 51,200 (of 94,540 total)
Skip to toolbar