Search Results for 'buddypress'
-
AuthorSearch Results
-
April 25, 2015 at 1:23 am #238329
In reply to: Avatar does not show outside BuddyPress
paixaofileto
ParticipantThank you. But still did not solve my problem. He appears in the members and activity page, but the web page still does not appear, as the home page and admin manager. Has no solution for this?
I’m trying to edit the plugin BuddyPress Fistr Letter Avatar because it changes the avatar everywhere the site taking the value of the first letter of the name of the user. But always when I try to use a value of xprofile field it does not work the way I want.
Has no solution for this? Any suggestion?
April 24, 2015 at 9:21 pm #238324In reply to: Avatar does not show outside BuddyPress
danbp
ParticipantPrevious snippet changed all avatars (user, blogs and groups) which is not what you want. Here’s a snippet which works almost correctly, but not to 100%. Give it a try anyway.
It changes the user avatar depending of an xprofile value.
(add to bp-custom.php)
function bpfr_my_new_avatar_url() { global $bp; if( bp_is_user() && ! bp_get_member_user_id() ) { $user_id = bp_displayed_user_id(); } else { $user_id = bp_get_member_user_id(); } if ( is_page( 'activity' ) ) { $user_id = bp_get_activity_user_id(); } $ranking = xprofile_get_field_data ('ranking', $user_id ); if ($ranking == "Top 25") { $url = get_stylesheet_directory_uri() .'/custom_img/25.png'; } if ($ranking == "Top 24") { $url = get_stylesheet_directory_uri() .'/custom_img/24.png'; } return $url; } add_filter( 'bp_core_default_avatar_user', 'bpfr_my_new_avatar_url' );Create a profile field called “ranking” with 2 options (top 24 & top 25).
Create a folder in your child-theme called “custom_img” and add 2 pictures: 24.png & 25.png (250×250)
If everybody must those avatars, disallow avatar upload in BP settings.
Site default avatar stays as Mystery Man (wp default setting).You have also to get rid of Gravatar, so you must add this to bp-custom.php
add_filter('bp_core_fetch_avatar_no_grav', '__return_true');The thing who doesn’t work is related to
X & Y are now friends. Both willhave the same avatar.Can probably by better improved.
April 24, 2015 at 5:00 pm #238317Carr Sky
ParticipantI am using buddypress 2.2.3.1 and bbpress Version 2.5.7
April 24, 2015 at 12:59 pm #238311In reply to: FATAL ERROR: BuddyPress 2.2.3 – Security Release
shanebp
ModeratorBuddyPress does not call
class phpmailerExceptionso the error is from something else on your site.April 24, 2015 at 10:50 am #238308In reply to: FATAL ERROR: BuddyPress 2.2.3 – Security Release
imakerin
ParticipantHello!
While i register new user from buddypress after click complete registration its make error as below
Fatal error: Cannot redeclare class phpmailerExceptionI reinstalled it but error not gone so please help me for that
thank you
April 24, 2015 at 6:21 am #238301In reply to: Buddy bar not displaying
@mercime
Participant> When i login as a user the buddy bar does not display at all.
@fugu78 BP/WP versions? Have you tried deactivating plugins except BuddyPress to check if issue is resolved i.e., plugin conflict?April 24, 2015 at 5:42 am #238299In reply to: [Resolved] Set up a forum
April 24, 2015 at 3:28 am #238297In reply to: Chat Plugin Recommendations
djsteveb
Participantcouple of pages of discussion in regards to some chat plugin with wp/bp recently:
in my limited experience, I would suggest nusoft’s av-chat since you are asking about incorporating video and having an option to save the videos. I don’t think there is any way to auto-mate moving saved video chats into bp – I think you’d have to admin in to your media server and pull files manually then add them to wp/bp yourself.
Maybe you would not need a live video chat plugin that saves files to add, perhaps something more like nusoft’s https://hdfvr.com/ which has a record video option, perhaps that could be incorporated in wp and bp with some custom button api or something (not sure, and if you explore that, let me know what you find out! I’d like to do that too!)
For just text chat with only a few people I like the free “quick-chat” plugin that is in the wp-repo.
Busier chat rooms have only worked for me using nusoft’s av-chat program or 123flashchat’s system. Everything else I have tried chokes after 20 users connect at the same time.
I’m looking into Jitsi and xmpp right now, if I can find some folks to work on an integration with these I may kick in some funding for it. Still learning php and java myself.
Just re-read your post, makes me think you could also use a screen recording software like corel’s videostudio or camtasia to “document all chat” – if you were involved in each one. Not sure what your project is really about, or what exactly you are looking to do, so a few random thoughts from another bp user, not yet a coder.
April 23, 2015 at 10:29 pm #238294shanebp
ModeratorWhat version of BP are you using?
April 23, 2015 at 9:18 pm #238291caniwigirl
ParticipantI first installed BuddyPress on our site a couple years ago and all worked as expected. However, it was decided we wouldn’t pursue BuddyPress as part of our solution at the time. Earlier this year, we decided to re-instate it, which is when I noticed this new behavior…
There have been a lot of updates in WordPress, BuddyPress and bbPress during this time, so I’m guessing something somewhere along the line, but may not have been addressed yet. I haven’t found any fixes online for it, which is why I have posted here.
Just to clarify, HIDDEN FORUMS appear for Keymasters and Moderators, but not to members of them who haven’t been assigned to either of these roles. They can, however, access the forum if they have the URL for it. So, at the moment, I am having to make all members of hidden forums be moderators in order to keep my site navigation clean.
Perhaps @bphelp could shed some light?
April 23, 2015 at 8:30 pm #238289In reply to: Avatar does not show outside BuddyPress
danbp
ParticipantSorry but your pasted code is wrong.
See source.
Read also the comments before you copy/paste.
@henrywright can you help out please ?April 23, 2015 at 4:59 pm #238282In reply to: Avatar does not show outside BuddyPress
paixaofileto
ParticipantThe avatars only works when I’m in BuddyPress pages.
I want to make it work around the site by adding the following code passing the user ID I found searching for:<? php $ Userid = bp_loggedin_user_id (); echo bp_core_fetch_avatar (array ('item_id' => $ id user)); ?>But in which .phpeu add file this code?
April 23, 2015 at 4:37 pm #238281In reply to: which file add the code?
danbp
ParticipantPlease, don’t double post. Answers are not coming faster by doing this. Thx.
Topic is continued here:
https://buddypress.org/support/topic/avatar-does-not-show-outside-buddypress/April 23, 2015 at 12:27 pm #238274In reply to: Avatar does not show outside BuddyPress
danbp
ParticipantYour homepage contains an error:
ob_end_flush(): failed to send buffer of zlib output compression (1) in ../../wp-includes/functions.php on line 3269Which kind of avatar should appear on the homepage ? It’s the default blog page and there is no avatar on this page.
You have to setup buddypress correctly at first before trying to modify your site.
Check that any BP component has his page and setup pretty permalinks.
April 23, 2015 at 12:24 pm #238273olay
ParticipantHi There …
I’m noticing this too – But I’m new to Buddypress, has this always been the case?
Crucially, I think someone who is a member of a group, should see the forums/topics from the group forums they are members of on the Forum Index.
‘Hidden’ should only apply to non-members
Does anyone know if this is correct behaviour/ how it’s always been?
Thanks
April 23, 2015 at 12:11 pm #238272In reply to: Avatar does not show outside BuddyPress
paixaofileto
ParticipantHere is the link to my site:
http://hsseek2.esy.es/you can log in and see:
username: test
password: testAvatars not appear on pages outside of BuddyPress, as the home page for example. In BuddyPress pages appear in the web page does not appear.
The profile name is ranking, used the gender variable because adapted from another code and not changed.
My theme is Twnty Fifteen
April 23, 2015 at 11:14 am #238260In reply to: [Resolved] Error on user registration
danbp
ParticipantOK.
Have you setup pretty permalinks to something other as “default” ?When BP is setup correctly, activities and members directory should be (by default), your-site/members/ and your-site/activities/
You actually have your-site/?page_id=5 for activities.Check that you assigned a page to any activated BP component – ensure also they exist in page directory. These page should be blank and without any parent template or model. Just a title, nothing else.
More setup details on Codex.
April 23, 2015 at 11:03 am #238259In reply to: Buddy Press – Blank Pages
danbp
ParticipantYes, it’s a knowed bbPress bug (at least 2 mounth ago). But bbPress was updated since… So i guess it’s also related to your theme and the way he calls page…
See here please, and apply the patch. (if not already in latest bbp ?)
https://buddypress.org/support/topic/weird-error-after-updating-buddypress/#post-234299Activate first 2015 or 2013 while testing, so you will be sure it’s your theme in case of the test is successfull. And also all other plugins except BP and bbP.
April 23, 2015 at 9:31 am #238254In reply to: Buddy Press – Blank Pages
fab_pj
ParticipantThanks so much Dan, at least know I know where to look for!
Activated debug, it seems like there is a conflict with bbpress, correct?Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in /home7/ealthblo/public_html/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php on line 28
April 23, 2015 at 8:27 am #238252In reply to: Buddy Press – Blank Pages
fab_pj
ParticipantSure thing, let me get all the info (warning, I am mildly tech savvy, so sometimes I struggle a bit to do get onto more elaborate tasks – eh!)
All right, URL: http://www.healthbloggerscommunity.com/
List of endless plugins!
Akismet
bbPress
BuddyPress
DesignThemes Core Features Plugin
Facebook By WebLizar
Facebook Conversion Pixel
Fast Secure Contact Form
Fast Secure Contact Form
Google Analytics by Yoast
PopupAlly Pro
Select Revive Old Post (Former Tweet Old Post)
s2Member Framework
The Events Calendar
The Events Calendar: WooCommerce Tickets
The Events Calendar PRO
WooCommerce
WooCommerce Quantity Increment
YITH WooCommerce Zoom MagnifierI am afraid that things like local install will require a bit of learning on my side, but point taken I’ll make a note to have a look into it 🙂
The page just misses the BP part.
Really dummy question, how do I go about enabling wp_debug in wp-config?
Do I have to go through my cPanel through my hosting?April 23, 2015 at 8:13 am #238250In reply to: Buddy Press – Blank Pages
danbp
ParticipantDon’t panic ! Something went wrong after WP update. OK.
And two BP pages are now blank.
But at this time, it’s difficult to tell you what happened to your install.Can you provide a site URL ? And a list of all your activated plugins ?
It’s also a good practice to have a local install, mirrored to your production site, where you can make some test. This is particulary usefull in situation like yours.
When you’re on group and members page, is the screen blank or only missing the BP part ?
Please enable wp_debug in wp-config, and see if you get some error mesaage ?FYI, here a similar discussion, so you can have a little overview about page issues.
April 23, 2015 at 8:03 am #238249In reply to: How to change forum Layout?
danbp
ParticipantHi @edutech2015,
depends your theme, and needs preferably the usage of a child-thme.
the forum plugin is bbPress. This plugin use the same technique as BuddyPress to adjust CSS.See bbPress documentation here.
And follow for BP from here.April 23, 2015 at 8:02 am #238248In reply to: Buddy Press – Blank Pages
fab_pj
ParticipantHi Dan,
I tried all the above, and nothing seems to be working. Now, as you will understand for ‘BuddyPress Support’ Theme I find it odd to have such a big bug after having re-activated and everything. I am resistant at completely reinstalling unless it’s the last straw, but I am also quite demotivated as the theme just sent me this answer:“This is not a theme issue, as you have updated only the wordpress. Also updating wordpress will not delete any records in your DB. Please contact buddpress support team regarding the issue.”
Hence, it’s not them or the theme, but it’s something within BuddyPress. I’d rather not have to change plugin options with 400+ users on my platform, as I really like the flexibility BuddyPress gives me. Hope you understand.
Best,
FabApril 22, 2015 at 11:48 pm #238238In reply to: HIde BuddyPress and bbPress items from guests
bp-help
Participant@caniwigirl
I personally would choose to add it to bp-custom.php this is the best approach in case you decide to change themes down the road because if you place it in your themes functions.php or in a child theme of that themes functions.php then you will loose that functionality if you do change themes. The bp-custom.php acts more or less as a plugin independent from the theme you may use. Good luck!April 22, 2015 at 7:21 pm #238223In reply to: User favorites and user mentions feed / loop
danbp
Participantyou have to add a scope in bp_get_stuff function.
if ( bp_has_activities( $activity_id . '&scope=favorites,mentions&max=5' ) ) :Thought you have to uncomment some of array values too. (component and item_id)
Reference: https://codex.buddypress.org/developer/loops-reference/the-activity-stream-loop/
-
AuthorSearch Results