Search Results for 'wordpress'
-
AuthorSearch Results
-
June 25, 2016 at 10:42 pm #255226
Paul Wong-Gibbs
KeymasterSure. Use WordPress in multisite mode (alongside a domain mapping plugin), and then activate BuddyPress network-wide.
June 25, 2016 at 7:46 pm #255224In reply to: Individual Groups Link Leads To 404
vitamincee
Participant@r-a-y I’m running:
Akismet
Alexa Certify
AmazoLinkenator
AMP
Select Audio player
Better WordPress Recent Comments
BP Profile Search
BuddyPress
BuddyPress Friends Only Activity Stream
BuddyPress Xprofile Custom Fields Type
CloudFlare
Co-Authors
Comment Rating Pro
Cookie Consent
Core Control
Delete Expired Transients
Edit Flow
Email Address Encoder
Enhanced Text Widget
Export Users to CSV
Featured Images in RSS w/ Size and Position
Gigaom New Relic
Gravity Forms
Gravity Forms Polls Add-On
IFRAME Embed For YouTube
Jetpack by WordPress.com
MemberPress Business Edition
MemberPress MailChimp
Meta Slider
Post-Plugin Library
Recent Posts Widget Extended
Regenerate Thumbnails
Revision Control
Simple Lightbox
SSL Insecure Content Fixer
WangGuard
Widget CSS Classes
Wordpress Video Plugin
WP Crontrol
WP Missed Schedule
WP Resized Image Quality
WP-Ban
Yet Another Related Posts Plugin
Yoast SEOBut I’m also running all of these on my dev server, and it works fine there.
I double check the nginx config
June 25, 2016 at 7:15 pm #255223In reply to: Individual Groups Link Leads To 404
r-a-y
KeymasterI just tested an nginx install and BuddyPress works for me.
I would say check your nginx conf file:
https://codex.wordpress.org/NginxBut if you say this problem only occurred when you upgraded BuddyPress, then it could be a plugin issue.
What plugins are you using?
June 25, 2016 at 6:02 pm #255218In reply to: BuddyPress 2.6.0 “Espejo” is now available
r-a-y
Keymaster@m1000 – Nice catch!
We’ll address this for v2.6.1. In the meantime, here’s the fix:
https://buddypress.trac.wordpress.org/attachment/ticket/7141/7141.01.patchJune 24, 2016 at 8:26 pm #255192In reply to: Links in Posts not responsive in iPhone mobile view.
r-a-y
KeymasterI don’t think this is related to BuddyPress, but rather your WordPress theme.
Your homepage is rendered by WordPress and not BuddyPress.
June 24, 2016 at 7:49 pm #255189In reply to: Installed. Now, what?
SteveMann
ParticipantI do have a blog on the WordPress site, so I was thinking of merging the two.
How do I remove a plug-in?
June 24, 2016 at 7:08 pm #255182In reply to: Installed. Now, what?
r-a-y
KeymasterIf you want to use forums, you should use bbPress instead.
bbPress = forums plugin
BuddyPress = community plugin (member profiles, user groups, private messaging, notifications)You can use both, but if a forum is all you need, then use bbPress.
I personally am not sure why you would move from phpBB. Installing WordPress just to use a WordPress forum plugin is not the best way to go about things unless you need to blog and use specific WordPress functionality on your site.
June 24, 2016 at 6:44 pm #255180In reply to: Can’t Activate WP User Sync
danbp
ParticipantYou should READ the error msg when you see one ! The plugin who generated the error is mentionned in it…
The support forum is here: https://fr.wordpress.org/plugins/bp-xprofile-wp-user-sync/June 24, 2016 at 6:43 pm #255179In reply to: Problems with filtering the activity stream
Henry Wright
ModeratorI got a new from WordPress and I finally got in
Great 🙂
June 24, 2016 at 5:32 pm #255174In reply to: Fatal error on a BuddyPress 2.6.0 upgrade
r-a-y
KeymasterI’ve duplicated the issue for plugins using code like this:
add_action( 'bp_include', function() { if ( class_exists( 'BP_Group_Extension' ) ) { class My_Group_Extension extends BP_Group_Extension { } bp_register_group_extension( 'My_Group_Extension' ); } }, 99 );The BuddyPress Cover Photo plugin uses something similar to the above.
I’ve opened a ticket with a fix to this specific problem:
https://buddypress.trac.wordpress.org/ticket/7140June 24, 2016 at 9:49 am #255134In reply to: Post Update: Unable to See the buddypress Activity
Slava Abakumov
ModeratorIt’s a duplication of this topic:
No access to single activity item on from after BP2.6 upgrade
To roll back: download the previous version here. Delete your current version of BuddyPress and upload the older one.
June 24, 2016 at 8:15 am #255127In reply to: Bussdypress title and SEO Yoast problem
Slava Abakumov
ModeratorPut this code in
functions.phpof your (child) theme.function lagodny_document_title_separator_pipe( $separator ) { return '|'; } add_filter('document_title_separator', 'lagodny_document_title_separator_pipe');I assume that you are on the WordPress 4.4+.
June 23, 2016 at 11:26 pm #255113In reply to: Fatal error on a BuddyPress 2.6.0 upgrade
kaab321
ParticipantThis helped me A LOT! Solved my error. Got it from:
https://wordpress.org/support/topic/fatal-error-with-buddypress-26?replies=3#post-8563337
Open Quote:
If you’re like me and have buddypress groups turned off, this will produce the error shown. I fixed by adding this to
/wp-content/plugins/buddypress/bp-groups/classes/class-bp-group-extension.php
change:
$group_id = bp_get_current_group_id();to:
$group_id = (bp_is_active('groups') ? bp_get_current_group_id() : '');and change:
if ( empty( $group_id ) && bp_get_new_group_id() ) { $group_id = bp_get_new_group_id(); }to:
if(bp_is_active('groups')) { if ( empty( $group_id ) && bp_get_new_group_id() ) { $group_id = bp_get_new_group_id(); } }IMO, they should have tested this before pushing out an update. Hopefully they figure things out.
Close quote
June 23, 2016 at 8:48 pm #255106In reply to: BuddyPress and Lighttpd
ooooooooo
ParticipantMate!
It was so easy.
Thanks!For all lighttpd users!
You can delete all stuff I put into my lighttpd conf. Remove all that junk code and put only:
server.error-handler-404 = “/index.php”
thats all folks, you don’t need any special mod revirte rules!More info:
One more time thanx @danbp it was in codex page under point 1.2
Have great evening and happy friday!
Regards
KrangJune 23, 2016 at 5:19 pm #255093In reply to: Fatal error on a BuddyPress 2.6.0 upgrade
syborg
ParticipantI posted a topic on the Buddypress Cover Photo support forum, on wordpress.org. (Same authors as KLEO theme and support forum so easier to access). Bye !
June 23, 2016 at 4:25 pm #255087In reply to: bp_groups_get_group_types return empty array
r-a-y
KeymasterLooks like the code example doesn’t work in your theme’s
functions.phpunless you change the hook from'bp_groups_register_group_types'to'bp_init'.However, the code example from the codex works as-is if used in
wp-content/plugins/bp-custom.php.Going to file a bug report. Thanks for testing, @d8vjork!
Update: Here’s the ticket – https://buddypress.trac.wordpress.org/ticket/7138
June 23, 2016 at 4:03 pm #255081In reply to: Bussdypress title and SEO Yoast problem
Slava Abakumov
ModeratorConfirming, that @destac solution works ok.
First appeared in a Yoast/wordpress-seo repository open issue.June 23, 2016 at 2:48 pm #255065In reply to: Users cannot register since update 2.53
Earl_D
ParticipantWell not exactly sure about what happened but between the update to BP2.6 and tweaking my URL setting after reading this
My registration seems to be working again. I had SSL installed on the site after I setup my WP/BP install. Initially changed the site and WordPress URLs in the general settings to remove https from the URL and add www. Before domain. So now URLs looked like this.Http://wwww.mydomain.comSeveral test registrations worked as expected immediately after that was done. Since I want to try to keep site secure I went back to setting and put the https back in the URL and keep the www so now URLs look like thisHttps://www.mydomain.comAll test registrations still work. Will get a few more random tests in but it looks like the problem is solved. BTW I am using lets encryptJune 23, 2016 at 1:00 pm #255054In reply to: New Navigation API
danbp
ParticipantFor the moment, it will continue to work (more or less)
Have you read this on 2.6 About page?
https://buddypress.trac.wordpress.org/changeset/10745…& as example, check comments in this file:
https://buddypress.trac.wordpress.org/browser/trunk/src/bp-core/bp-core-buddybar.php?rev=10745June 23, 2016 at 12:17 pm #255045Kookidooki
ParticipantHello Paul,
I’m using theme Kleo, BP Group Hierarchy, some other plugins and installed new Buddypress with all plugins switched off.
I’ve checked this: https://buddypress.trac.wordpress.org/changeset/10745
and see you did a huge overhaul to the Group Navigators..June 23, 2016 at 10:14 am #255038Paul Wong-Gibbs
KeymasterI’ve created a bug report for this issue so we can improve it in future
June 23, 2016 at 9:46 am #255022June 23, 2016 at 9:30 am #255020In reply to: Problems with filtering the activity stream
IdleWanderer
ParticipantI am fairly certain I already answered this.. Weird..
Anyway, I managed to get in eventually. It seems the wrong password was saved in my browser. I got a new from WordPress and I finally got in. The ticket is in now, so let’s see if they do anything about it.
June 23, 2016 at 9:22 am #255018In reply to: BP2.6.0: localization regress
danbp
ParticipantДобрый день @valery-kondakoff,
no it’s not a regression ! Just a question of delay after BP’s update. Translations are made by volonteers, which are humans, not programmed machines. You have to wait that the translation is completed.
Or you can download the trunk version, which is already completed to 100%.
https://translate.wordpress.org/projects/wp-plugins/buddypress/dev/ru/defaultAt the page bottom you have a download button and a file type selector. Select po and mo format and rename both files to buddypress-ru_RU
June 23, 2016 at 8:04 am #255014In reply to: Group publish only administrator and moderato
-
AuthorSearch Results