Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 6,726 through 6,750 (of 68,948 total)
  • Author
    Search Results
  • #272685
    yusareba
    Participant

    In the settings (general) panel of buddypress, users can change their email address.

    How can I remove or disable this?

    If needed, I would be willing to use CSS but can’t find the identifier.

    #272677
    ChuxMark
    Participant

    All right. Everything is working now. I did NOT refresh the domain as mentioned in a prior post. Here is what I did:

    1. From wp-admin, I deactivated Jet Pack plugin.

    2. Set plugin folder back to “BuddyPress” (we previously set it to use -old suffix).

    3. From wp-admin, reactivated BuddyPress

    4. Confirmed that BuddyPress DOES work.

    5. From wp-adminm, reactivated JetPack.

    6. Confirmed BuddyPress STILL works.

    There seems to be some unknown defect/inconsistency between the BP and JetPack plugins.

    Note that there are other threads in this forum about JetPack problems that indicate SSO needs to be turned off. In my case, it wasn’t on, so that doesn’t seem to be the same problem.

    Hope this situation and resolution helps someone else.

    Best regards! CHUCK

    #272674
    Venutius
    Moderator

    In that case I don’t think that page is part of your BuddyPress install, I’m thinking it must have come with your theme, unless you renamed an existing bp page to that. there’s quite a few ways of getting the members page in masonry view, but unless you set it up specifically then it’s not part of the standard bp install I don’t think.

    #272664
    Venutius
    Moderator

    Either something went badly wrong with your install, wich is unlikelu or there’s something running on your site that is seriously messing with BuddyPress. Now you know how to recover from this, you could disable all other plugins, switch to the 2017 theme and then re-enable BuddyPress, to see if it works on it’s own.

    #272656
    Venutius
    Moderator

    https://buddypress.org/support/topic/redirect-to-user-profile-after-login/ should allow you redirect user after login to that page.

    #272644
    Venutius
    Moderator

    I think I’d be tempted to raise this as a bug on trac:

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

    mubiesam
    Participant

    @vapvarun did change to activate BuddyPress at the network level, but only https://lt.johocen.com/ will not display the toolbar, the other 2 sites are OK.

    Will it be conflict with the theme used? where should i look into?

    Your suggestion is highly appreciated.
    Sam

    Venutius
    Moderator

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

    I’ve raised a ticket for this.

    #272626
    Venutius
    Moderator

    Yep something is making your BP areas private for sure. BuddyPress for example on it’s own makes yoursite.com/members a public page, to make it private, like your’s is, you’d need to add a plugin – bp does not even have a setting for it.

    #272624
    panosa1973
    Participant

    @venutius you were right on the money! This worked. Now a member can see their Friends menu item even when they’re on another member’s profile but without having access to the other member’s friends. And you said it was gonna be difficult. Hah! 🙂
    Thank you yet again!

    function hide_friends_tab() {
    	global $bp;
    	if ( !bp_is_my_profile() && !is_super_admin() ) {
    		bp_core_remove_nav_item( 'friends' ); 
    
    		bp_core_new_nav_item( 
        	        array( 
                    'name' => __('Friends', 'buddypress'), 
                    'slug' =>  $bp->friends->slug, 
                    'position' => 50, 
                    'show_for_displayed_user' => false,
                    'default_subnav_slug' => 'friends'
        ));
    	
    	}
    }
    add_action( 'bp_setup_nav', 'hide_friends_tab', 15 );
    Norman Cates
    Participant

    I don’t understand.

    Isn’t all the xProfle extra information part of Buddypress?

    I haven’t installed an extra plugin that has anything to do with xProfiles.

    AFAIK.

    #272613

    In reply to: Registration Page 404

    Buddy Quaid
    Participant

    I just disabled BuddyPress from the Network > Dashboard > Plugins

    and the registration page started working. It was showing BuddyPress fields and I was wondering how this could be happening since I just disabled it.

    I checked out the main sites plugins and BuddyPress is activated there. So my question is, could it have been double activated? Once on the website and once in the network? I have a multisite operation. Where should it be activated? Network or on the actual site?

    #272610
    T
    Participant

    Thanks for writing, @chuxmark. I wish I could help you but I still don’t have a solution myself. I’d appreciate if someone from @buddypress was available to help, especially since this problem appears to be widespread.

    T

    #272609

    In reply to: Members Not Showing

    Jayell12
    Participant

    Hi @vapvarun @djpaul,

    I just tested out that action and it worked!

    However, when I go to the members’ search page it’s using the 50px x 50px image, causing distortion: http://mobileweb.guru/webdev/crowdwel/members/.

    Also, when I upload an avatar it changes the filename changes. I believe it is important to have keywords in the image file name, so why does BuddyPress change the file name? And is there a way to customize the alt tag of the images?

    Thank you for your time,

    James

    #272606

    In reply to: Email solution

    Varun Dubey
    Participant

    @mrditt
    You can switch in real time.
    Mailgun will send email sent to WordPress or any other plugins including BuddyPress.
    Mailgun has a free slot and paid stot, based on usages you can increase your plan.
    When someone sends a message to Adam (just random username), Adam will get an email notification as well.

    You can find the doc here https://codex.buddypress.org/emails/
    It will help you disable all bp emails, alter them and disable some emails based on their actions.

    #272604

    In reply to: Registration Page 404

    Varun Dubey
    Participant

    @buddyq

    Try to save register page again inside BuddyPress settings and save permalinks again as well.
    To debug the issues, you can deactivate additional plugin at your staging/development site and keep only BuddyPress active.

    graphitewp2
    Participant

    Thank you Paul for commenting. I wish I was clearer.

    I was referring to the Log In and Register buttons on the admin bar (which is Buddypress) in the top left.

    Im using this to disable BuddyPress’ registration process and fallback to WordPress. I want to merely change the link of the Log In button so it goes to my custom login page. How do you go about doing it?

    
    <?php
    
    /**
     * Disables BuddyPress' registration process and fallsback to WordPress' one.
     */
    function my_disable_bp_registration() {
      remove_action( 'bp_init',    'bp_core_wpsignup_redirect' );
      remove_action( 'bp_screens', 'bp_core_screen_signup' );
    }
    add_action( 'bp_loaded', 'my_disable_bp_registration' );
    
    ?>
    #272597

    In reply to: Email solution

    mrditt
    Participant

    Thank you Vapvarun for the reassurance on MailGun.

    I had a few quick follow-up questions, I was hoping you could help me with:

    1. Do you recommend I go into “maintenance mode” before switching the email service to Mailgun or do you have any other workflow suggestions for making the email service change on a very active site?

    2. When a member gets a site generated notification is the sender email always the site email, even if it’s to notify them of a message from another member, in other words, is one MailGun account (subject to the email limit I purchase) going to do the trick for a large buddypress membership site?

    3. When a member messages a member inside the site, is this through their email?

    And if you have any documentation on this that would be great too. I’m having trouble trying to understand how email/notifications/messaging in a buddypress site functions, and then in turn how to solve our problem of exceeding our hosts* 500 per day email limit.

    Thank you again!

    *Interestingly GetFlyWheel use SendGrid but when I contacted SendGrid they referred me to MailGun

    #272592
    Nik
    Participant

    Thank you for your reply…

    comment action need to update based on Activity Type

    This may be true (if I’m understanding correctly), however, the notification seems to be coming from Buddypress since it is the standard email that is generated when ANY response is made on ANY update. Somehow I want to filter this out so that comments on rtmedia updates generate a different email which I suspect may have as much to do with Buddypress as it does with rtmedia (although I am also waiting for support there too)…

    If anyone has any suggestions as to a filter(?) perhaps that I could use, I would be very grateful.

    #272587

    In reply to: duplicate group page

    Varun Dubey
    Participant

    @pandreas you can create group type with https://wordpress.org/plugins/bp-create-group-type/
    and you can display them via shortcodes on any pages with group type parameters

    and with https://github.com/wbcomdesigns/shortcodes-for-buddypress you can have a shortcode to display groups with group-type anywhere as a shortcode
    e.g. [groups-listing type=”sports”]

    Varun Dubey
    Participant

    @mubiesam Try to activate BuddyPress at the network level.

    mubiesam
    Participant

    As stated “It was there, but not sure what was the cause, now it disappeared.”

    I had removed all 3 plugins…BuddyPress, BuddyPress Registration Options, and Super Socializer. While installed back the Super Socializer, found something weird…

    My multisite main site https://johocen.com/ show the toolbar correctly, but subsite https://lt.johocen.com/ just disappeared.

    It means, without BuddyPress and BuddyPress Registration Options, the toolbar problem is still there, but what happened was, https://lt.johocen.com/ is the only site installed with these 2 plugins.

    It sounds strange, but it seems the toolbar was disappeared right after I had added this line at the end of bp-registration-options/includes/core.php
    add_action( 'the_champ_user_successfully_created', 'bp_registration_options_notify_pending_user', 10, 1 );
    But now even I had removed BuddyPress and BuddyPress Registration Options, the problem is still there.

    I noticed that even the plugin removed, but the database created for plugin is still stored, is there a way to completely removed the plugin and it’s db?

    This problem is driving me crazy, any help is highly appreciated.

    phucitol
    Participant

    I should have mentioned

    wordpress 4.9.4
    buddypress 2.9.4

    Norman Cates
    Participant

    Thank you.

    However, I am using a plugin that sends an email invite to people whoare to become users.

    They fill in a simple registration form, then submit it.

    And then log in to the website.

    At that point, they have access. They haven’t gone through any Buddypress registration forms.

    So I can’t hook those actions.

    At what point in the user registration process do the xProfile fields get created/populated for a new user. eg. When does the default Name field get populated in the user registration process.

    And is there a corresponding action I could hook?

    #272565
    Venutius
    Moderator

    Hi there,

    If you have FTP access to your site I would go to the wp-content/plugins directory and rename the buddypress directory to buddypress-old.

    See if that get’s your site back up.

Viewing 25 results - 6,726 through 6,750 (of 68,948 total)
Skip to toolbar