Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,576 through 5,600 (of 68,948 total)
  • Author
    Search Results
  • #282130
    lookingahead
    Participant

    @venutius thanks!

    you mean the user’s profile page in the dashboard, or the user profile page that is in BuddyPress?

    #282128
    lookingahead
    Participant

    @venutius if i could juuuust get BuddyPress to use the same avatar that bbPress uses, that would solve basically everything

    that way i could use a plugin that changed the bbPress avatar, and then any change in bbPress’s avatar would show as the avatar for BuddyPress too

    know how to do that?

    #282127
    lookingahead
    Participant

    @venutius agree…..

    thing is, in bbPress there are plugins that easily, and in a lightweight fashion, allow for custom avatars for users

    users can go to their profile in the dashboard and change it

    now, because i also restrict access to the dashboard for users that are not admins, this works. it works because i am then the one, then, that can change the avatars for individual users this way, without having to allow users to change their own avatars, and without enabling the creation of user profiles in BuddyPress

    simple dimple

    but for some godawful reason, even though this means that bbPress avatars can be changed this way via various plugins, BuddyPress doesn’t accept the same change

    i would think that bbPress is not that different, coding-wise, from BuddyPress

    buuuuut hell, i don’t know 😀

    if BuddyPress allowed the customization to happen like bbPress does, of individual avatars from the user dashboard, that would be great

    isn’t there a way to allow BuddyPress to use a bbPress avatar? so i could use the plugin that changes the avatar in bbPress, and then any changes to a bbPress avatar…BuddyPress would show the same avatar???

    #282125
    lookingahead
    Participant

    @venutius ok, will test that code….but even if that code works to change the default avatar in BuddyPress, how would i change the avatar for each user on a case-by-case basis?

    please note: i will not be able to go to the user’s profile to change their avatar, because profiles are disabled. they do not exist.

    i want to be able to change a user’s avatar, but not allow my users to be able to change their own avatar.

    #282120
    Venutius
    Moderator

    You’d just set the default avatar for buddypress:

    The default avatar is the one that appear when a user has not yet uploaded his own avatar. If you’re not a fan of the mystery man, here are the constants that you can use to define your own:

    define ( 'BP_AVATAR_DEFAULT', $img_url );
    define ( 'BP_AVATAR_DEFAULT_THUMB', $img_url );

    Change the the constant to include the URL for the location of your new default avatars and add this to your bp-custom.php file.

    define ( 'BP_AVATAR_DEFAULT', 'http://example.com/default-avatar.jpg' );
    define ( 'BP_AVATAR_DEFAULT_THUMB', 'http://example.com/default-avatar-thumb.jpg' );

    To use a default avatar without Gravatar you should also add:

    add_filter( 'bp_core_fetch_avatar_no_grav', '__return_true' );

    #282119
    lookingahead
    Participant

    @venutius glad to have helped — and awesome on updating the page, thanks!

    btw, i’ve shut off user profiles; i do not want my users to be able to update their profiles at all….this is not a social site i’m building, even though buddypress is built with the idea that it resembles something along the lines of facebook…

    my site is going to have groups for the sole purpose of discussion, but not for socializing; i’ve deliberately shut off user profiles so users can’t even see them

    so enabling ‘extended profiles’…wouldn’t that require that i go to the user profile to update an avatar for a user? i’ve disabled that…so even if i were to turn on ‘extended profiles’ how would i be able to upload a user avatar for each user?

    as to that plugin, it works GREAT to shut off gravatar access; it shows the blank BP default image person thing….but even when i pair that plugin with other plugins that allow avatar customization, only bbPress avatars are affected with other plugins; BuddyPress doesn’t work with other plugins that try to get local avatars to show — even if i’ve already shut off the Gravatar display with that fab plugin you linked to (‘disable user gravatar’)

    #282115
    lookingahead
    Participant

    the direct link to the Codex page if anyone wants to see it:

    https://codex.buddypress.org/themes/guides/customizing-buddypress-avatars/

    #282114
    lookingahead
    Participant

    @prashantvatsh if you happen to have any idea how to get BuddyPress to use local avatars and stop trying to use Gravatars…while also allowing for certain classes of users (subscriber, participant, administrator, keymaster, etc.) to have their own default avatar, i’d greatly appreciate it

    #282103

    In reply to: Activation Key

    Arize Nnonyelu
    Participant

    I strongly think it’s a problem with an outdated plugin or theme.

    Try to update themes and plugins, from my experience that could happen when buddypress is working with an outdated, theme or plugin.

    #282102

    In reply to: Avatar blurred

    Venutius
    Moderator

    Might be an idea to raise this as a feature request on Trac – https://buddypress.trac.wordpress.org/ Maybe they can set the cropping window to max size as a solution?

    #282097
    shanebp
    Moderator

    Thanks for reporting this issue.
    Since you are using WP 5.0 beta, some issues are expected.

    To make the issue is not related to your theme, please try switching momentarily to a WP theme like 2016 and see if the issue persists.

    If it does not, then the issue is probably related to your theme.

    Otherwise, please provide this info:

    1. BuddyPress version
    2. which BP template pack you are using – see wp-admin > Settings > BuddyPress > Options
    3. any javascript errors in your browser’s console
    4. any errors in the php error log for your website
    #282088
    alriknijdam
    Participant

    Alright, I’ve downloaded my entire WP directory and searched for bp_members_screen_display_profile with Notepad++ Search in Files. But the only files showing hits belong to Buddypress.

    F:\\wp-content\plugins\buddypress\bp-members\classes\class-bp-members-component.php (3 hits)
    	Line 329: 				'screen_function'     => 'bp_members_screen_display_profile',
    	Line 346: 			'screen_function' => 'bp_members_screen_display_profile',
    	Line 359: 				'screen_function'     => 'bp_members_screen_display_profile',
    F:\\wp-content\plugins\buddypress\bp-members\classes\class-bp-members-theme-compat.php (1 hit)
    	Line 58: 			do_action( 'bp_members_screen_display_profile' );
    F:\\wp-content\plugins\buddypress\bp-members\screens\profile.php (3 hits)
    	Line 15: function bp_members_screen_display_profile() {
    	Line 22: 	do_action( 'bp_members_screen_display_profile' );
    	Line 31: 	bp_core_load_template( apply_filters( 'bp_members_screen_display_profile', 'members/single/home' ) );

    CRITICAL Cannot redeclare bp_members_screen_display_profile() (previously declared in /wp-content/plugins/buddypress/bp-members/screens/profile.php:22) in /wp-content/plugins/buddypress/bp-members/screens/profile.php line 32

    How to go from here?

    Best regards,
    Alrik

    shanebp
    Moderator

    … taking my own profile as example, on the domain/members page it shows last online 3hrs ago, but on the right sidebar is shows last active minutes ago.

    Are you using a cache plugin?
    If so, try clearing all caches.

    But please note that you are probably referring to 2 separate items.

    afaik, last online is not a BuddyPress feature, and is being added by your theme, a plugin or some custom code.

    And last active is generated by BuddyPress.

    So, if last active is accurate, but last online is not, then please contact the creator of that code.

    #282068
    Venutius
    Moderator

    Hi there,

    If you are using BP Nouveau the sitewide notice widget is not supported:

    https://buddypress.trac.wordpress.org/ticket/7893

    #282051

    In reply to: Hackers Getting In….

    bob0072
    Participant

    Thanks!! Will do! I really like buddypress and bbpress, just gotta get a handle on the trouble makers. ????????

    #282049

    In reply to: buddypres

    shanebp
    Moderator

    Your current registration page url ends with __trashed, so your link is still pointing to that page.
    You can edit links or create custom links by going to …wp-admin > Appearance > Menus

    But you cannot just replace the register page, if that is what you did.

    Have you read the
    modifying-the-registration-form

    You can customize the layout by editing the template.
    If you are using the Legacy Template pack, this is the file:
    buddypress\bp-templates\bp-legacy\buddypress\members\register.php

    Instead of editing core files, you can overload a template in your child theme.
    Read this.

    #282024
    iamdev
    Participant

    Can anyone help i am having problem caching buddypress site logged in user are served the cached page

    #282011
    nivanova64
    Participant

    Hi BP Support Team,

    I do have the following problem: As part of registering process all of my users are getting redirected to the activation page asking for an activation key after clicking the link in their email. I have no idea why this is happening as I do not need to have additional activation key ( or any activation options). The email link is enough for me.
    I’m using BBPress version 3.2.0.
    I’m having the following plugins installed and activated:
    – Bbpress 2.5.14
    – Buddypress registaration options 4.3.5

    Thanks,

    Neli

    #282010
    Venutius
    Moderator

    By the sounds of it you have two plugins trying to declare the same function name. Deactivate all of your plugins apart from BuddyPress, if the error remains try switching themes to 2016, if that fails then it’s custom code you’d added via function.php, bp-custom.php etc.

    #281962
    Venutius
    Moderator

    I’m not sure anything’s been done with it due to potential issues with spamming users. To work around this my suggestion would be to install one of the BuddyPress Mass Messaging plugins and email all with a link to the activity post. It’s a bit clumsy I know.

    #281941
    shanebp
    Moderator

    Have you read the docs re advanced-configurations ?
    Note this section: ‘Put profiles in the root — example.org/username/’

    #281940
    shanebp
    Moderator

    I cannot duplicate this using PHP Version 7.0.26

    As you probably know, it’s just a warning and can safely be ignored.
    And won’t be visible when you turn debug off.

    afaik, part of the next release is cleaning up some calls re PHP 7+

    If you’d like to open a ticket, you can do so here.
    Be sure to include the steps necessary to reproduce, including which template pack you have selected in Settings > BP > Options.

    shanebp
    Moderator

    If you are using the Legacy Templates, the BuddyPress register form is here:
    buddypress\bp-templates\bp-legacy\buddypress\members\register.php

    If you are using the Nouveau Templates, the BuddyPress register form is here:
    buddypress\bp-templates\bp-nouveau\buddypress\members\register.php

    Venutius
    Moderator

    You’d probably need to ask gravity forms if they support the BuddyPress Extended Profile.

    #281906
    shanebp
    Moderator

    Please use the code button when posting code.

    bp_activities_title() returns the title for all activities.

    If the activity item already exists, try bp_activity_feed_item_title()

    But it sounds like those items do not exist.
    You should not have to output those items.
    It should be done automatically – IF – you filter bp_blogs_record_post_post_types to include your post types.
    More info here.

    If you are using some plugin to create custom post types ( ACF ? ), the creators of that plugin may have some tips on how to use it with BuddyPress.

Viewing 25 results - 5,576 through 5,600 (of 68,948 total)
Skip to toolbar