Search Results for 'buddypress'
-
AuthorSearch Results
-
June 24, 2016 at 6:52 pm #255181
In reply to: [Resolved] Removing nav & subnav item in groups
danbp
ParticipantJune 24, 2016 at 5:43 pm #255175In reply to: New user activation emails not coming
maganiza
ParticipantThanks my guy you just saved my ass. And @sharmavishal thank you too.
So I went to tools, buddypress, selected – Reinstall emails (delete and restore from defaults) and clicked repair. Problem solved.
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 4:49 pm #255171In reply to: Fatal error on a BuddyPress 2.6.0 upgrade
r-a-y
Keymaster@anth0ny167 or anyone else experiencing this problem, I’m convinced this is a problem with class autoloading that we introduced in BuddyPress 2.6.
Although it helps, you shouldn’t need to add
bp_is_active()checks that kaab321 recommended, the fact that you do means that it is a bug with BuddyPress.If you can duplicate your issue after using my proposed fix:
https://gist.github.com/r-a-y/f54e7a07b71af1c7bfab6e06433da3d6Then, please let me know the steps on how I could replicate this on a fresh install if possible.
@syborg has verified that this works.Also, the BP Group Hierarchy issue is not related to this one.
June 24, 2016 at 3:20 pm #255164In reply to: Full Width
snorklebum
ParticipantI’ve done a bit more digging and using the renamed full-width.php -> buddypress.php it looks like I just need to get full-width in to the body class to get the result I’m after.
As a logic test within header.php under the <body… line I added <?php if (!bp_is_blog_page() ) { ?> ‘full-width’ <?php }?> which then displays that piece of text at the top of each of the pages I expect.
When I try and replace
<body <?php body_class(); ?>>
with
<body <?php body_class(if (!bp_is_blog_page() ) { ?> ‘full-width’ <?php }); ?>>
I just get an empty page.
I’m probably missing something very simple
June 24, 2016 at 12:22 pm #255150Topic: Full Width
in forum How-to & Troubleshootingsnorklebum
ParticipantHi,
WP:4.5.3 BP:2.6.0 Theme:twentyfourteen
I currently have my main page with a primary sidebar and content sidebar, I’ve set all other pages to use the full width template which seems to be working for events etc but buddypress only follows this setting on the main groups and members pages. As soon as I navigate to a group or member page it no longer uses that template is this correct behaviour?
I have tried adding an if around the get_sidebar but this just leaves the area empty which I’m guessing is a css issue.
I also tried copying the page-templates\full-width.php file to a child theme and renaming to buddypress.php but this also has the same effect of the empty space at the side.
Any advice would be greatly appreciated.
Thanks
June 24, 2016 at 11:17 am #255141In reply to: New user activation emails not coming
econowill
Participanti experienced exactly same issue with writer.
only activation mail not work, others do. password change, etc…try to this
admin panel – setup – buddypress
setup is including permal link menu. i dont know exactly what it in english.and click restore email setup. and i solved.
good luck!June 24, 2016 at 9:51 am #255135In reply to: Fatal error on a BuddyPress 2.6.0 upgrade
Antonio
ParticipantHi, I am one of the guys behind Woffice. On Woffice seems that the problem is not a conflict with “Buddypress Cover Photo”, the issue happens also without the plugin if the component “groups” is disabled.
So the solution proposed by @r-a-y doesn’t work for us, instead the solution proposed by @kaab321 solved the issue.
June 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 9:01 am #255130In reply to: Fatal error on a BuddyPress 2.6.0 upgrade
syborg
Participant@kaab321 I think that the fix proposed by @r-a-y is more elegant and relevant. You should use it instead, if it works for you, of course.
Thank you @r-a-y, I tried it and it works for me 🙂
I’ve seen that it was an autoload problem, but my knowledge about the buddypress core is very limited :/ I preferred modify a plugin than dare to change directly a buddypress file.June 24, 2016 at 7:01 am #255124sharmavishal
Participantare you using any seventhqueen theme? if yes check this
June 24, 2016 at 1:13 am #255116In reply to: Fatal error on a BuddyPress 2.6.0 upgrade
pandabear
ParticipantMy particular problem was with the (ancient, but useful) plugin bp-group-hierarchy. The manual fix recommended in the post BuddyPress 2.6.0 “Espejo” is now available (found here: https://github.com/ddean4040/BP-Group-Hierarchy/pull/21/files) got me back up and running. Thanks!
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 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 5:02 pm #255091In reply to: Fatal Error Crash – Website stopped working
r-a-y
KeymasterWhat plugins do you have installed?
Are you using multisite?
Do you only have BuddyPress activated on the root site? If so, you should network-deactivate any BuddyPress plugins and only activate BuddyPress plugins on the main root site.
Update – Can you try this fix?
June 23, 2016 at 4:54 pm #255090In reply to: Fatal Error Crash – Website stopped working
kaab321
ParticipantI don’t have BuddyPress Cover Photo plugin installed
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:12 pm #255084In reply to: bp_groups_get_group_types return empty array
r-a-y
KeymasterJune 23, 2016 at 4:06 pm #255083r-a-y
KeymasterCan you check out this thread and reply there?
June 23, 2016 at 4:04 pm #255082In reply to: Fatal Error Crash – Website stopped working
r-a-y
KeymasterAlso see:
Some people have said that the BuddyPress Cover Photo plugin is causing this issue:
https://buddypress.org/support/topic/fatal-error-on-a-buddypress-2-6-0-upgrade/#post-255063June 23, 2016 at 3:42 pm #255077In reply to: Duplicate cover photos Buddypress 2.6
Paul Wong-Gibbs
KeymasterIt looks like the Kleo theme might need to be updated for BuddyPress 2.6. I’d suggest to start by contact their support for help.
June 23, 2016 at 3:19 pm #255070In reply to: Fatal error on a BuddyPress 2.6.0 upgrade
Slava Abakumov
ModeratorJune 23, 2016 at 3:02 pm #255067In reply to: DB collation: utf8mb4_general_ci
Paul Wong-Gibbs
KeymasterThis is fixed in BuddyPress 2.7. 😉
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 2:38 pm #255063In reply to: Fatal error on a BuddyPress 2.6.0 upgrade
syborg
ParticipantHello, I had exactly the same problem, with the theme “KLEO” (seventhqueen).
If it can helps someone, the problem was caused by the plugin “Buddypress Cover Photo”. I fixed it by changing the first line in the file
/plugins/buddypress-cover-photo/group-cover.php:if ( class_exists( 'BP_Group_Extension' ) ) :by
if ( class_exists( 'BP_Group_Extension' ) && bp_is_active('groups') ) :(It’s my first post on this forum, so I wanted to say that Buddypress is a great plugin, good work guys !)
-
AuthorSearch Results