Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 32,751 through 32,775 (of 69,120 total)
  • Author
    Search Results
  • #130547
    Hugo Ashmore
    Participant

    And obviously all those accounts have mail boxes and , receive emails to addresses such as joeblogs@example.com?So is your server hosting BP acknowledged as a server allowed to relay mail from itself under that domain, this sounds more like an issue with your mail server and how it’s been configured – too tightly in respect of spam checking? you may want to check your email logs see what has been arriving at your email server and how it’s dealt with it.

    #130545
    tjbrewers
    Participant

    @DJPaul, BuddyBoss theme. Site is livingwithhm.com.

    #130544
    csanger
    Member

    I also cannot search members, groups, or create a group (unless using the dashboard). I’m also using the Buddypress Template Pack and Buddypress for Pagelines. I’ve imported the site to its permanent domain which is now mylibertyclassical.com. Thanks in advance for any help!

    #130542
    Paul Wong-Gibbs
    Keymaster

    You’re right that it had broken in trunk again; I’ve just fixed it, and so it’ll update on BuddyPress.org soonish. Thanks for pointing that out.

    I tested the 1.5 branch, and the 1.5.4 tag, and both worked fine. On your site, are you able to look at the large gravatar with a CSS inspector and see if it’s picking up these styles:

    #wp-admin-bar-user-info img.avatar {
    height: 64px;
    width: 64px;
    }

    #130538
    @mikey3d
    Participant

    @djpaul It’s exactly the same thing my site and buddypress.og have too large avatar mystery man. Here’s the screenshot I just showing you above here. What more can I tell you?

    Paul Wong-Gibbs
    Keymaster

    In order: yes, not yet (https://buddypress.trac.wordpress.org/ticket/3460), no, and I expect BuddyPress 1.6 will be in a beta in within a couple of weeks.

    #130535
    frostdawn
    Member

    Also of note- I’m working in a multi-site environment where BOTH sites are exhibiting this behavior (I wanted to rule out this being a problem isolated to the second site by checking both for the bad behavior)

    @ChrisClayton
    Participant

    @substrato as listed on the roadmap (https://buddypress.org/about/roadmap/) bbpress 2.0 will have full intergration in buddypress 1.6.

    Trac ticket for more: https://buddypress.trac.wordpress.org/ticket/3598

    Hugo Ashmore
    Participant

    And can you confirm that you actually have gone through the setup process to ensure forums are activated for groups, and moved necessary bb-config file to site root if not there and that is has correct connection details as your wp-config file has.

    #130519
    frostdawn
    Member

    Nope, I’m using BuddyPress 1.5.4. I noticed this behavior as soon as the upgrade was up and running. As noted in another thread (component crash note) we had to systematically shut down the different components (including BuddyPress) to troubleshoot the problem. When we deactivated Buddypress, the user name displayed properly again. When we reactivated BuddyPress, the user name was screwwed up as noted in my message above.

    The display for the username is right below the main navigation, in the light gray bar to the right of the search for members/groups/posts by the login/logout controls.

    #130511
    CJ Kruger
    Participant

    @dt10111 do you not have problems with twitters rate limit? How many users would you say are using the feature?

    #130509
    richardpd
    Member

    UPDATE
    I have fixed this but am rather unclear why this has arisen!
    The edits I have done here have been through my Network Admin dashboard to my files.
    Everything worked except for editing index.php. When I went to my server (Hostgator via cPanel) my theme index.php was unedited!! After editing(adding) the PostView code and saving the code is now working.
    Just to highlight/emphasis the difference between the index.php I edited through Dashboard shown in my first post above here below is the index.php that exists on the server root and I edited via cPanel. They are completely different and I do not understand how/why this is the case!
    `

    <?php
    /**
    * The loop that displays posts.
    *
    * The loop displays the posts and the post content. See
    * https://codex.wordpress.org/The_Loop to understand it and
    * https://codex.wordpress.org/Template_Tags to understand
    * the tags used in it.
    *
    * This can be overridden in child themes with loop.php or
    * loop-template.php, where ‘template’ is the loop context
    * requested by a template. For example, loop-index.php would
    * be used if it exists and we ask for the loop with:
    * get_template_part( 'loop', 'index' );
    *
    * @package WordPress
    * @subpackage anIMass
    * @since anIMass 7.0
    */
    ?>

    max_num_pages > 1 ) : ?>

    <?php
    /* Start the Loop.
    *
    * In Twenty Ten we use the same loop in multiple contexts.
    * It is broken into three main parts: when we’re displaying
    * posts that are in the gallery category, when we’re displaying
    * posts in the asides category, and finally all other posts.
    *
    * Additionally, we sometimes check for whether we are on an
    * archive page, a search page, etc., allowing for small differences
    * in the loop on each template without actually duplicating
    * the rest of the loop that is shared.
    *
    * Without further ado, the loop:
    */ ?>

    <div id="post-” >

    <a href="” title=”” rel=”bookmark”>

    <?php
    $images = get_children( array( ‘post_parent’ => $post->ID, ‘post_type’ => ‘attachment’, ‘post_mime_type’ => ‘image’, ‘orderby’ => ‘menu_order’, ‘order’ => ‘ASC’, ‘numberposts’ => 999 ) );
    if ( $images ) :
    $total_images = count( $images );
    $image = array_shift( $images );
    $image_img_tag = wp_get_attachment_image( $image->ID, ‘thumbnail’ );
    ?>

    <?php printf( __( 'This gallery contains %2$s photos.’, ‘anIMass’ ),
    ‘href=”‘ . get_permalink() . ‘” title=”‘ . sprintf( esc_attr__( ‘Permalink to %s’, ‘anIMass’ ), the_title_attribute( ‘echo=0’ ) ) . ‘” rel=”bookmark”‘,
    $total_images
    ); ?>

    <a href="” title=””>
    |

    <?php edit_post_link( __( 'Edit', 'anIMass' ), '| ‘, ‘‘ ); ?>


    |

    <div id="post-” >

    <?php the_content( __( 'Continue reading ‘, ‘anIMass’ ) ); ?>

    |

    <?php edit_post_link( __( 'Edit', 'anIMass' ), '| ‘, ‘‘ ); ?>


    <div id="post-” >

    <a href="” title=”” rel=”bookmark”>

    <?php the_content( __( 'Continue reading ‘, ‘anIMass’ ) ); ?>

    ‘ ) ); ?>


    <?php printf( __( 'Posted in %2$s’, ‘anIMass’ ), ‘entry-utility-prep entry-utility-prep-cat-links’, get_the_category_list( ‘, ‘ ) ); ?>

    |

    <?php
    $tags_list = get_the_tag_list( ”, ‘, ‘ );
    if ( $tags_list ):
    ?>

    <?php printf( __( 'Tagged %2$s’, ‘anIMass’ ), ‘entry-utility-prep entry-utility-prep-tag-links’, $tags_list ); ?>

    |


    <?php edit_post_link( __( 'Edit', 'anIMass' ), '| ‘, ‘‘ ); ?>
    |
    <a href="”>Permalink


    |

    max_num_pages > 1 ) : ?>


    `

    I tried editing index.php via cPanel to the first index.php code I posted but then I got an error about “call to undefined function bp signup”
    eg
    Blogs Directory
    Fatal error: Call to undefined function bp_blog_signup_enabled() in /home/hilaryd/public_html/richard-dickinson.com/wp-content/themes/rdbloganimass_bp/index.php on line 8

    I am most grateful for further help and advice to get my blog fully BP compatible & enabled-thanks

    Paul Wong-Gibbs
    Keymaster

    Wporg is the better place. You’re asking a multisite question, and BuddyPress is after all just a plugin.

    This may be possible with a domain mapping plugin, or you may need to use a multinetwork configuration; again, not sure.

    #130504
    Paul Wong-Gibbs
    Keymaster

    Where is it displaying this? Is it a custom theme?

    #130502
    neodoxa
    Participant

    Ok, so here are some pictures showing the formatting problems I’m experiencing. I’m sure that the tweaks you posted about probably fix some of them, but I added them to the end of my style.css (see the pastebin link in the post above) and didn’t see any changes take effect.

    Here is a screenshot of a buddypress user profile. As you can see, the bottom is cut off. I also want to get rid of the bulletpoints next to each link on the profile.
    http://i40.tinypic.com/mt09d5.png

    Here is a screenshot of some sample groups I created… The descriptions are cut off on them. And the text on the right side goes beyond the white text box background.
    http://i43.tinypic.com/jb4qky.png

    Here is a screenshot of the main forum incorporating all of the groups. There are some alignment issues here as well. Also, I’d like to be able to remove the bulletpoints from the links (circled in red).
    http://i43.tinypic.com/5vtbw7.png

    Thanks in advance,
    Neodoxa

    tjbrewers
    Participant

    @naijaping, That’s actually what I started with. It definitely limits the stream to ‘&per_page’, but then “Load More” button doesn’t reveal any additional items in the stream. It says: Viewing item 1 to 5 (of 37 items); so the content is there.

    Does your “Load More” button work? Does it load more on the same page? Are you pagnation with it?

    BlinkyBill01
    Participant

    Yes, that’s it Chris. I may have jumped ahead and called it a security flaw incorrectly. What I meant was that, if this bug was actually working as intended, it didn’t allow members to change their display name, which could cause people to think that it was a security issue. That people wouldn’t join if their login was visible. Since the WordPress allows a Nickname to be visible and that BuddyPress didn’t, that some could see it as a flaw.

    Since it it being fixed, it showed me that it wasn’t intended and that someone else knew of this and was working to fix it.

    Thanks for the response :)

    @ChrisClayton
    Participant

    i think calling it a ‘security flaw’ is going abit overboard… most of the top 100 websites on alexa’s topsites list have your login name displayed publicly. (eg. if i gave you my gmail address so we could keep in contact, all you need to do is figure out/guess my password and hack my account.) but anyways,

    Correct me if i misread what your saying, but it sounds like this might be the problem your experiencing – https://buddypress.trac.wordpress.org/ticket/3725 (it’s being fixed in buddypress 1.6)

    #130491
    erica34
    Member

    ok. sorry to be really dumb but what should the registration page be and how can I find it and name it? Doesn’t it redirect to a BuddyPress Page?

    @tjbrewers, try the below methood, thats what am using

    /*Change the number of activity items to show per page */

    function my_custom_query_filter( $query_string ) {
    $query_string .= ‘&per_page=11’;
    return $query_string;
    }
    add_filter( ‘bp_dtheme_ajax_querystring’, ‘my_custom_query_filter’ );

    #130488
    @mercime
    Participant

    You can still go to dashboard menu BuddyPress > Pages and select the name of the page you want your registration page to be. Then Save.

    abysshorror
    Member

    @juanmaguerrero por favor, I’d also need the tutorial :)

    Thanks !

    tjbrewers
    Participant

    @abysshorror, tried that. Nothing happened.

    I then went directly into plugins/buddypress/bp-activity/bp-activity-template.php line 301 and changed ‘per_page’ default from 20 to 5, just to see what would happen. It shows 5 items in the stream with the Load More button. But when you click on the button, nothing else loads.

    #130479
    neodoxa
    Participant

    I put the bottom of my style.css file into pastebin… http://pastebin.com/qjLUthgP

    Is that the right way to add in the buddypress codes?

    Thanks.

    #130478
    erica34
    Member

    Yes everything went good with that. I was trying to get the sidebar in the right place. But my register page is not working. When I click register it brings me back to the home page of my website. I need to change the link so the register page is associated with the BuddyPress register page. From my understanding that was step 2 of the setup.

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