Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 8,126 through 8,150 (of 69,109 total)
  • Author
    Search Results
  • #265592
    Kriss Kellino
    Participant

    Hi guys

    I have just had a user try to post a picture and a link together… yes I am using Activity plus plugin.

    It came up with Security check requiried… now not sure what is causing it. Akismet approved the post.

    So is it the Activity plus plugin or BuddyPress?

    I am using the latest versions of everything.

    Kriss 🙂

    http://www.krissharmsworth.rocks/blog

    #265588
    lawlyet
    Participant

    This error is showing up to many websites. A google search for “PHP Warning: Creating default object from empty value in /wp-content/plugins/buddypress/bp-groups/classes/class-bp-groups-member.php on line 1170” returns almost 5500 results…

    And if you search for “PHP Warning: Creating default object from empty value in class-bp-groups-member.php on line” (removing line number and the path of the file from the results, you get some something like 337000 results.

    My site is also showing this message, and I already removed all plugins and themes, running the latest version of WP, BP and BBPress with Twenty Seventeen template.

    I guess it may be a problem with php, or maybe with chrome and chromium… Maybe it is time to start working on this issue.

    I already added the following in my functions.php:

    /* Remove errors if any */
    error_reporting(E_ERROR | E_PARSE);
    /* End remove Errors */

    it’s not the ideal. there is also the better option to add some lines in your wp-config.php, to do a proper debug and get it in a log file, instead of showing it in the site.

    #265586

    In reply to: BuddyPress Groups

    shanebp
    Moderator

    The widget’s ajax call does not check to see who is viewing it.
    So only public groups will appear; hidden & private groups will not appear even though you are a member.
    You could write your own widget that uses the logged-in member’s id.
    Use the group widget code as a reference:
    buddypress\bp-groups\bp-groups-widgets.php

    #265581
    joaomluz
    Participant

    Thanks for your help.

    I add this filter but i have also to change bp_send_email function in file /buddypress/bp-core/bp-core-functions.php. then it works.

    Before:

    $must_use_wpmail = apply_filters( 'bp_email_use_wp_mail', $wp_html_emails || ! $is_default_wpmail );
    
    	if ( $must_use_wpmail ) {
    		$to = $email->get( 'to' );
    
    		return wp_mail(
    			array_shift( $to )->get_address(),
    			$email->get( 'subject', 'replace-tokens' ),
    			$email->get( 'content_plaintext', 'replace-tokens' )
    		);
    	}

    After:

    $must_use_wpmail = apply_filters( 'bp_email_use_wp_mail', $wp_html_emails || ! $is_default_wpmail );
    
    	if ( $must_use_wpmail ) {
    		$to = $email->get( 'to' );
    
    		return wp_mail(
    			array_shift( $to )->get_address(),
    			$email->get( 'subject', 'replace-tokens' ),
    			$email->get_template( 'add-content' )
    		);
    	}

    Is there any way to hook/override this “$email->get_template( ‘add-content’ )” keeping the plugin core unchanged?

    #265572
    Henry Wright
    Moderator

    That page is made up of template parts but you would start by editing your-child-theme/buddypress/members/single/index.php. If the file doesn’t exist you will need to create it. For more information check out the Template Hierarchy article

    Ref https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/

    jeffacubed
    Participant

    Hi @arbolife any chance you even vaguely remember what you did to get new user activation email being sent out when using WPML + BuddyPress? Like you, everything works 100% correctly on the ‘English’ side when new users register, requests membership for a private BP group, logs-in, etc – BUT if a user registers on the french registration page (fr/register/) they never get any emails (I they are foever listed as “pending” in the user area). I’ve also noticed that no emails (outgoing) get triggered if an existing user switches to the /fr/ side & tries to join a private BuddyPress group. Trying to access the /fr/wp-login.php page (or the password reset) from the /fr/ side will also trigger a 404 page. So, like you mentioned, it’s a setting “somewhere” in WPML to resolve these (many) anomalies, but for whatever reason, I can’t see to find the resolution!

    My test setup:

    WP: 3.7.4
    BP: 2.8.2
    WPML: 3.7.0
    BuddyPress WPML Plugin: 1.5.5.1

    -Jeff

    #265558
    mattbelshaw
    Participant

    I have now solved this issue.

    I had added code to the bp-custom.php which attempted to hide certain tabs from other users, this code for some reason was forcing buddypress to hide the entire member profile rather than just specific tabs.

    #265546
    Henry Wright
    Moderator

    I deleted my BuddyPress

    There’s 2 parts to BuddyPress. There’s the database and then there’s the files and folders.

    If you deleted the database then you’ll need to use a backup. If you’ve deleted the BuddyPress files and folders only, then you can just upload them and everything should work again.

    #265544
    jls2017
    Participant

    FYI, I had to create a new profile just to post this so that it could be seen. For some reason my last post was invisible to everyone unless I was logged into my profile and using this link:

    https://buddypress.org/support/topic/directories/#post-265538

    Even then it didn’t appear in my topic history. Was it hitting some sort of moderation filter? Didn’t say that it was and there wasn’t 3 links in my post? Or does that profile of mine not function correctly for some reason?

    Thanks mods for help with that…

    #265525
    jayney54
    Participant

    Lalaloo you can turn notifications off for all users for specific BuddyPress functions in the “email” section. Just select the particular notification and un-select the “situation” and save. But then no-one will get any of those notifications..

    #265524
    r-a-y
    Keymaster

    If you’re talking about this specific instance where a user has registered a site during registration:

    Must change BLOG_URL and user-site.url from http to https

    Then, I’ve added a fix for this here:
    https://buddypress.trac.wordpress.org/attachment/ticket/7508/7508.01.patch

    #265523
    lalaloo
    Participant

    Oh. Ok.
    But is there a way to pick which email notifications can be switched off in Buddypress?

    #265522
    r-a-y
    Keymaster

    You should use HTTPS throughout your site if you want to force the email to use SSL links.

    Or force HTTPS on individual pages like the registration page so activation email links will use SSL.

    The other alternative is filtering the email tokens to use HTTPS:
    https://buddypress.trac.wordpress.org/browser/tags/2.8.2/src/bp-core/bp-core-functions.php#L3120

    If you’re a WordPress developer, hook on to the 'bp_after_send_email_parse_args' filter and do checks against the 'tokens' array key.

    For more info on the 'bp_after_X_parse_args' filter, see:
    https://codex.buddypress.org/developer/using-bp_parse_args-to-filter-buddypress-template-loops/

    #265521
    r-a-y
    Keymaster

    This is not a BuddyPress problem; this is a bbPress problem, which is scheduled to be fixed in bbPress 2.6.

    See:
    https://bbpress.trac.wordpress.org/ticket/2690

    Until then, you can manually apply the following change:
    https://bbpress.trac.wordpress.org/changeset/5857

    #265520
    lalaloo
    Participant

    This is a major problem with Buddypress. Members getting outrageous amounts of emails for everything is getting us a lot of complaints from our members.

    Ideally, each member could get a daily/weekly/whatever digest summarizing all notifications for their account.

    Or, the ability to turn off some email notifications regarding activity/mentions, etc

    r-a-y
    Keymaster

    I’ve created a report for this on our bug tracker here:
    https://buddypress.trac.wordpress.org/ticket/7508

    Update – Here’s a fix:
    https://buddypress.trac.wordpress.org/attachment/ticket/7508/7508.01.patch

    This will be added for BP 2.9.

    #265514
    danbp
    Participant

    Hi,

    you need to install BuddyPress where your WordPress is installed.
    Note that BuddyPress does not work on installations where you give WordPress its own directory.

    If WP is at the site (europsms.com, you install BP there.
    If WP is in the sub directory (sms-landing), you install it there.

    You could also read the complete install guide if this is unclear.

    Getting Started

    #265513
    danbp
    Participant

    Hi,

    as site admin, you can easily add new members to a BuddyPress group.

    • Go to dashboard > Groups
    • Choose the group where you want to add a member and click on Edit button underneath the group name.
    • On the group admin page, you’ll see a textarea marked as Add New Members
    • Enter the username and save!

    And voila. 😉

    #265502
    lalitavalon
    Participant

    When I installed and apply the login page to buddypress there is a problem in the form.

    When I press the login button without any username and password it does not show error mesage of the username and password.
    can i help in the same.

    #265498
    r-a-y
    Keymaster

    It sounds like you might not have migrated the DB tables properly.

    If possible, try and set up a local install with the same DB tables to try and duplicate the problem.

    This might be related:

    Registration and Edit Profile Issue

    #265497
    r-a-y
    Keymaster

    Is BuddyPress network-activated or not?

    If not, this bug exists if BuddyPress is only activated on one site instead of network-wide:
    https://buddypress.trac.wordpress.org/ticket/7472

    If you are able to, try adding this fix to bp-xprofile/bp-xprofile-admin.php:
    https://buddypress.trac.wordpress.org/changeset/11520

    If you don’t want to modify the lines manually, you can replace the file with this:
    https://raw.githubusercontent.com/buddypress/BuddyPress/master/src/bp-xprofile/bp-xprofile-admin.php

    #265492
    ma3ry
    Participant

    I know that seems like a logical suggestion but please know that, in addition to all the above, I have cleared browser and wp-rocket history and cache, and have reinstalled a fresh download of buddypress.

    #265487
    lalitavalon
    Participant

    I want to customize the login page of buddypress it is redirecting the worpdress default login age

    jacobian64
    Participant

    oh really? yes I am using a plugin facebook login and FB-WP auto connect. but I still failed to make this function work. it says I had to include email address when I click facebook button. but isn’t the plugin will grab the email address from facebook and populate the field?

    I still have no idea how to register in buddypress using facebook.

    gorviekin
    Participant

    If i can just disable the BuddyPress Members page/profile (where you see cover photo, feed etc) and have it load the default (/user/username) that theme is currently using instead.

Viewing 25 results - 8,126 through 8,150 (of 69,109 total)
Skip to toolbar