Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 46,601 through 46,625 (of 68,967 total)
  • Author
    Search Results
  • Paul Wong-Gibbs
    Keymaster

    On a multisite install, you have to be a super admin to see the backend, yes.

    #92828
    Roger Coathup
    Participant

    cross linking threads – there’s more on this subject here: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/mentions-is-confusing-to-members/

    If anyone has developed a full solution for removing @mention, please let me know

    #92824
    pcwriter
    Participant

    @omosha

    Hi again. I found a link to your site on another of your posts. The problem is caused by your theme. There’s a “text-shadow” effect applied to the #body container so it affects everything.

    Add the following to your style.css to remove that effect from the adminbar:

    #admin-bar-logo, #wp-admin-bar li.no-arrow a, #wp-admin-bar ul li a {text-shadow:0 0 0 #fff;}

    @mercime
    Participant

    BuddyPress can only be installed in one site of your WP multisite. There’s no BPMU or BPMS at this time.

    #92821
    pcwriter
    Participant

    @omosha

    Could you provide a link to your main site? It’s difficult to say for certain what might be causing the blur without being able to see it.

    #92820
    pcwriter
    Participant

    You could use Buddypress Links to accomplish that easily:
    https://buddypress.org/community/groups/buddypress-links/

    #92819
    itgirlkate
    Member

    Site directory, where I can list sites plus their link, summary, screen shot. Also I would want people to be able to upload their own information about their site like on blog catalog or technorati.

    omosha
    Participant

    I agree that I probably don’t need to add the avatar path since it’s a new install, I’m wondering why I’m getting the ‘/home/integral/public_html/wp-content/plugins/buddypress/bp-core/bp-core-avatars.php on line 479’ error code?

    Thanks for the reply.

    #92816

    In reply to: Member Count Incorrect

    Roger Coathup
    Participant

    @nunomad – slightly off track – why’ve you gone with 1.0.3? That’s an old old version. The latest BuddyPress (and the best option for support, etc.) is 1.2.5

    Roger Coathup
    Participant

    hxxp is just a placeholder to stop everything being turned into links in the post. You should use http

    p.s. I’m not sure you need to make the avatar path changes if this is a new install (rather than moving an existing BP install from the root blog). Perhaps @r-a-y can confirm this.

    omosha
    Participant

    Thank you so much, Mercime! I’ve got most of it all installed with the exception of a few hiccups.

    I had a difficult time with the avatars even before this modification. I’m getting this error code
    ‘/home/integral/public_html/wp-content/plugins/buddypress/bp-core/bp-core-avatars.php on line 479’
    When I go into bp-core-avatars.php on line 479 I see this as the definition:
    ‘function bp_core_fetch_avatar_filter( $avatar, $user, $size, $default, $alt ) {

    // If passed an object, assume $user->user_id
    if ( is_object( $user ) )
    $id = $user->user_id;

    // If passed a number, assume it was a $user_id
    else if ( is_numeric( $user ) )
    $id = $user;

    // If passed a string and that string returns a user, get the $id
    else if ( is_string( $user ) && ( $user_by_email = get_user_by_email( $user ) ) )
    $id = $user_by_email->ID;

    // If somehow $id hasn’t been assigned, return the result of get_avatar
    if ( empty( $id ) )
    return !empty( $avatar ) ? $avatar : $default;

    // Let BuddyPress handle the fetching of the avatar
    $bp_avatar = bp_core_fetch_avatar( array( ‘item_id’ => $id, ‘width’ => $size, ‘height’ => $size, ‘alt’ => $alt ) );

    // If BuddyPress found an avatar, use it. If not, use the result of get_avatar
    return ( !$bp_avatar ) ? $avatar : $bp_avatar;
    }’

    I’ve tried installing a bp-custom.php file within the plugin directory so that it would not be deleted when updating Buddypress but it produces an error everywhere on the site.
    Here is what I tried to add as the bp-custom.php file for reference:
    ‘define( ‘BP_AVATAR_UPLOAD_PATH’, ‘/var/www/wp-content/blogs.dir/1/files’ );
    define( ‘BP_AVATAR_URL’, ‘hxxp://integralbeings.com/files’ );’

    As I look at the code, I’m wondering if this is because there is no hxxp://integralbeings.com/files directory. Do I need to add this or is the path incorrect? Also, I’ve not seen hxxp before, is this a typo?

    Thanks for the support on this, it’s rather minor in the grand scheme of things, but I’m wondering if it will become a bigger problem as the community grows.

    Cheers,
    -Brant

    #92813
    Dickson Waudo
    Participant

    @r-a-y Thats sounds a little better, I thought I would have to filter the `bp_has_groups` function, I guess I didn’t quite figure the code out. I’ll try that. Thank you everybody let you know how it goes

    @mercime
    Participant

    The plugin does not resolve the issue. It was my bad, as @hnla mentioned BP has checks to prevent duplicate usernames. The thing is, if the issue was brought about by what I mentioned above, then members should be taught to use @mentions with usernames instead of first names. Perhaps a plugin which shows a popup of “Franks” for member to choose from should be available to prevent breach of privacy.

    @mercime
    Participant

    Bless my soul :-) next thing you know some Hot Patootie ;-) will be closing this thread :-(

    @fsdasdfasdff no offense meant :-) let us know if the case of the duplicate Frank was caused by the error in @mentions. Cheers.

    #92803
    pcwriter
    Participant

    @PJ

    Thanks… Glad you like the site!

    For password strength and other stuff:
    https://buddypress.org/community/groups/bp-xtra-signup/

    #92802
    PJ
    Participant

    Under development? It looks and feels amazing!! I love the design of the site and the slightly better placed admin bar is extremely easy to read.

    Also, while I have you, are there plugins that verify the username or the password strength or are those custom designed? Your site looks wonderful. Keep up the great work @pcwriter.

    pcwriter
    Participant

    @hnla

    Well now, another Rocky Horror fan?

    #92800
    pcwriter
    Participant
    #92796
    Roger Coathup
    Participant

    @johnwinch42

    ‘fix’ isn’t the right word, as it’s not really broken – in general, WordPress blog post text is left as the original author intended it to be written (with the exception of some meddling by Matt mullenweg).

    If you want to modify your blog posts to convert @pseudo references into clickable links, you can probably do it by filtering the blog content when it is saved.

    BuddyPress uses the function bp_activity_at_name_filter() to create those links. Take a look at it (it’s defined in bp-activity-filters.php) and see if you can adapt / use it for the filters on blog content saves.

    #92795
    Ajet
    Participant

    wordpress requires a huge amount of memory to load … arround 30Mb …
    when you are activating buddypress it requires more ….

    running phpinfo I found the default memory limit was 34MB
    via .htaccess i have increased my memory to 64M now it is working fine i can access my wp-admin

    #92794
    Ajet
    Participant

    wordpress requires a huge amount of memory to load … arround 30Mb …
    when you are activating buddypress it requires more ….

    running phpinfo I found the default memory limit was 34MB
    via .htaccess i have increased my memory to 64M now it is working fine i can access my wp-admin

    #92787
    Dickson Waudo
    Participant

    @nuprn1 thats a nice idea, I don’t know about the apply_filter though. the `$browse_sql` var is a new var that I initiate in just that function and within the scope of the if statement. Reasons being I added a whole other table to be queried in `$paged_groups` and `$total_groups` array being returned by the `get_active` function.

    Its a small line of code, easily replaced on upgrade and works perfectly fine for me right now, I just wanted to be able to access, append/modify and object oriented class function from an outside function (that doesn’t make sense) lol. Something like whatever I have in my what if statement gets its own function and the arguments from the get_active function and processes my query after get active is complete (sorta), its not a private function so I can access it outside the BP_Groups_Group class, just don’t know how I can do an add_action or an apply_filter

    #92785
    Roger Coathup
    Participant
    #92784
    rossagrant
    Participant

    @creativologist You need to buy gravity forms for WordPress. It’s a premium plugin but does exactly what you want and is quite literally amazing! stacked full of features. The best WP plugin there is in my opinion for this kind of thing. Well worth the small cost.

    #92775

    In reply to: Dashboard problem

    @mercime
    Participant

    BuddyPress works in single site mode. The only time you want multisite or network is if you want to allow your members to create blogs.

    If that’s the case, deactivate BuddyPress. Then follow steps to create a network here – https://codex.wordpress.org/Create_A_Network. Then double-check your WordPress is working as it should before installing BuddyPress – https://codex.buddypress.org/getting-started/before-installing/

Viewing 25 results - 46,601 through 46,625 (of 68,967 total)
Skip to toolbar