Search Results for 'buddypress'
-
AuthorSearch Results
-
April 24, 2017 at 7:43 pm #265592
Topic: Security check required
in forum How-to & TroubleshootingKriss Kellino
ParticipantHi 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 🙂
April 24, 2017 at 4:44 pm #265588In reply to: Group header file problems
lawlyet
ParticipantThis 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.
April 24, 2017 at 2:53 pm #265586In reply to: BuddyPress Groups
shanebp
ModeratorThe 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.phpApril 24, 2017 at 12:12 pm #265581In reply to: Using wp_mail and emails
joaomluz
ParticipantThanks 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?
April 24, 2017 at 12:18 am #265572Henry Wright
ModeratorThat 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/
April 23, 2017 at 4:37 am #265566jeffacubed
ParticipantHi @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
April 22, 2017 at 3:40 pm #265558In reply to: Non-admin users cannot see other users.
mattbelshaw
ParticipantI 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.
April 21, 2017 at 8:12 pm #265546In reply to: I deleted my BuddyPress. NO!
Henry Wright
ModeratorI 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.
April 21, 2017 at 6:47 pm #265544In reply to: Directories, Listings, & Profiles
jls2017
ParticipantFYI, 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…
April 20, 2017 at 8:54 pm #265525jayney54
ParticipantLalaloo 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..
April 20, 2017 at 7:12 pm #265524In reply to: verification email link needs https
r-a-y
KeymasterIf you’re talking about this specific instance where a user has registered a site during registration:
Then, I’ve added a fix for this here:
https://buddypress.trac.wordpress.org/attachment/ticket/7508/7508.01.patchApril 20, 2017 at 6:49 pm #265523lalaloo
ParticipantOh. Ok.
But is there a way to pick which email notifications can be switched off in Buddypress?April 20, 2017 at 6:34 pm #265522In reply to: verification email link needs https
r-a-y
KeymasterYou 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#L3120If 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/April 20, 2017 at 6:25 pm #265521r-a-y
KeymasterThis 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/2690Until then, you can manually apply the following change:
https://bbpress.trac.wordpress.org/changeset/5857April 20, 2017 at 5:57 pm #265520lalaloo
ParticipantThis 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
April 20, 2017 at 4:57 pm #265517r-a-y
KeymasterI’ve created a report for this on our bug tracker here:
https://buddypress.trac.wordpress.org/ticket/7508Update – Here’s a fix:
https://buddypress.trac.wordpress.org/attachment/ticket/7508/7508.01.patchThis will be added for BP 2.9.
April 20, 2017 at 3:39 pm #265514In reply to: Buddy Press plugin leads to 508 error. What to do?
danbp
ParticipantHi,
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.
April 20, 2017 at 3:35 pm #265513In reply to: Process for adding users to group
danbp
ParticipantHi,
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. 😉
April 20, 2017 at 4:53 am #265502In reply to: Solved – Customize the login page of wordpress
lalitavalon
ParticipantWhen 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.April 19, 2017 at 11:01 pm #265498In reply to: User Profile Fields not showing and can’t be created
r-a-y
KeymasterIt 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:
April 19, 2017 at 10:57 pm #265497In reply to: Sorry, you are not allowed to access this page.
r-a-y
KeymasterIs 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/7472If you are able to, try adding this fix to
bp-xprofile/bp-xprofile-admin.php:
https://buddypress.trac.wordpress.org/changeset/11520If 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.phpApril 19, 2017 at 6:45 pm #265492In reply to: Sorry, you are not allowed to access this page.
ma3ry
ParticipantI 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.
April 19, 2017 at 1:18 pm #265487In reply to: Log In and Registration
lalitavalon
ParticipantI want to customize the login page of buddypress it is redirecting the worpdress default login age
April 19, 2017 at 4:30 am #265478jacobian64
Participantoh 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.
April 19, 2017 at 12:12 am #265477gorviekin
ParticipantIf 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.
-
AuthorSearch Results