Search Results for 'buddypress'
-
AuthorSearch Results
-
April 2, 2014 at 8:31 pm #180677
In reply to: Register for wordpress but opt out of buddypress
Renato Alves
ModeratorInteresting question. As far as I understand, WordPress and BuddyPress, when at the same installation, they share the same user base/database. So at first, I’d say this is not possible.
But, I could think of a few areas where it’d be possible.
- In a multisite installation;
- Installing another version of WordPress in the same server, something like, (var/yourwebsite/www/) , (var/yourwebsite/www/buddypress)
.
Maybe there is a way, I can’t think of one right now. But let’s see if anybody else have some ideas share. =)
April 2, 2014 at 8:21 pm #180674Renato Alves
ModeratorCheck out this thread: https://buddypress.org/support/topic/username-vs-display-name/ Maybe it can help.
April 2, 2014 at 5:33 pm #180667In reply to: Hide/Delete Base Profile Username
aussiemike
Participant@wesleysoccer – was that the css for buddypress theme or WP theme?
Regards
MikeApril 2, 2014 at 5:12 pm #180665In reply to: Wants to rename "notification" tab
sundev
Participant// I got it working by putting these lines of your code on my existing function
if ( bp_is_user() && bp_user_has_access() ) {
$count = bp_notifications_get_unread_notification_count( bp_displayed_user_id() );
$class = ( 0 === $count ) ? ‘no-count’ : ‘count’;
$bp->bp_nav[‘notifications’][‘name’] = sprintf( __( ‘Alerts <span class=”%s”>%s</span>’, ‘buddypress’ ), esc_attr( $class ), number_format_i18n( $count ) );
}I really appreciate your gesture. Thank you very much.
April 2, 2014 at 4:41 pm #180663valuser
ParticipantAs indicated the problem (on my installation) WAS a plugin.
items 1 and 2 of my observations above have been eliminated by deactivating this plugin
Item 3 still persists (at least on my installation) even with trunk 8229
April 2, 2014 at 3:13 pm #180659In reply to: Can't install bbpress together with Buddypress
Shmoo
ParticipantA Server error can be a lot of problems..
Maybe your hosting company doesn’t let you to run powerful websites. BuddyPress & bbPress are not small scripts. It’s not like you install a simple Twitter plugin for WordPress. BuddyPress & bbPress are advanced scripts that require some power of your server.
My advise, check your server logs and maybe that will give you some idea of what is happening.
April 2, 2014 at 1:44 pm #180653In reply to: field visibility
Leendert van der Ree
Participant@shanebp Had support from the developer of xprofile. He thinks has something to do with buddypress. I don’t know. What I do know is that if I have the following code in the members-loop file:
<?php $hidden_fields = bp_xprofile_get_hidden_fields_for_user(bp_get_member_user_id()) ; ?>
<?php if (xprofile_get_field_data(‘field_name’) && !in_array(xprofile_get_field_id_from_name(‘field_name’), $hidden_fields)) : ?>
<?php echo xprofile_get_field_data (‘field_name’); ?>
<?php endif; ?><?php bp_member_profile_data( ‘field=Adres’ ); ?>
The first code with $hidden_fields and xprofile doesn’t return anything.
The second code does always return data, no matter how visibility is set.Any ideas?
April 2, 2014 at 11:58 am #180650In reply to: BuddyPress translated to norwegian
danbp
Participanthi !
BP nb_NO translation is here: https://translate.wordpress.org/projects/buddypress/1.9.x
For further question, take contact here:
https://make.wordpress.org/polyglots/
or in your language here:
https://no.wordpress.org/April 2, 2014 at 5:44 am #180638In reply to: What to do against spambot registration?
Halo Diehard
ParticipantHey, @agundabbo, I’m new to BuddyPress but have been doing WordPress for a couple of years, and was happy to find two plugins that work with BuddyPress that have been stopping the fake registrations on my site. They are WangGuard and Pie Register. Good luck!
April 2, 2014 at 5:41 am #180637In reply to: Stop BuddyPress SPAM
Halo Diehard
ParticipantI just installed WangGuard today on a new site I’m setting up that’s been getting slammed with several an hour, and it stopped the new faker registrations immediately. Also, I’ve been using Pie Register for a couple years on another site, and that alone has done a great job of keeping most spammer registrations out, so I put it on the new site, too. I didn’t have Akismet or anything on my other site, just Pie Registration and I was pasting a bunch of IP’s and certain words in the Settings > Discussion > Comment Blacklist, and no spam.
Pie Register has the best Captcha I’ve seen in the plugins, but what I really like is you can program random questions that the user has to put the right answer in, and that’s fun. I choose stuff that is relevant to my sites, and amusing. I was really glad it works with BuddyPress!
And I’m not affiliated with either of the above plugins, either, just another site owner who knows what it’s like trying to track down help.
April 2, 2014 at 12:54 am #180632In reply to: Troubles setting up BuddyPress site
@mercime
ParticipantAh the theme needs to be BuddyPress compliant, which greatly reduces the options.
Actually, BP is compatible with nearly all WordPress themes (and all WP default themes) since BP 1.7. Issues arise with some frameworks which do not follow basic WP templating with the_title and the_contant within the WP loop. Even so, there are solutions put forth in the BP Codex https://codex.buddypress.org/themes/theme-compatibility-1-7/
April 2, 2014 at 12:42 am #180630In reply to: Wants to rename "notification" tab
modemlooper
ModeratorBP 1.9+
function custom_notification_menu_tabs(){ global $bp; if ( bp_is_user() && bp_user_has_access() ) { $count = bp_notifications_get_unread_notification_count( bp_displayed_user_id() ); $class = ( 0 === $count ) ? 'no-count' : 'count'; $bp->bp_nav['notifications']['name'] = sprintf( __( 'Alerts <span class="%s">%s</span>', 'buddypress' ), esc_attr( $class ), number_format_i18n( $count ) ); } } add_action('bp_setup_nav', 'custom_notification_menu_tabs', 201);April 1, 2014 at 2:56 pm #180600In reply to: Create Sub Profile
John James Jacoby
KeymasterThis feature does not currently exist in BuddyPress.
The core team has talked about what a robust member-to-member role and capability system would look like for a few years now (to allow for this sort of functionality) however we haven’t prioritized it yet.
March 31, 2014 at 7:23 pm #180573In reply to: Configuring W3 Total Cache with BuddyPress
Asynaptic
ParticipantHi Hugo, my bad, should have given the link: https://codex.buddypress.org/getting-started/improving-performance/ at the bottom of page
but I see you, or maybe another mod? has already removed the link to this thread
does anyone know if Fredrick Townes has said anything about adding functionality to W3 total cache for buddypress? all I found was this 4 year old comment
Maximize WordPress and BuddyPress Performance With W3 Total Cache
March 31, 2014 at 3:12 pm #180558In reply to: remove all members tab PLEASE! HELP!
Barnabas
ParticipantI’m asking for same. Since buddypress revolves round members, it will be tricky to remove it. I only want to remove the notification figure for logged in users and reserve it for admins…
March 31, 2014 at 2:30 pm #180555pimark
ParticipantHas anyone else come across this problem? Anyone from Buddypress able to offer some advice ?
thanks
March 31, 2014 at 2:29 pm #180554In reply to: Small Avatar Size in Activity Stream
shanebp
Moderator>deem some activity as more important
I never understood that either.
It seems arbitrary and esoteric.Try this:
Create a template over-ride of
bp-templates\bp-legacy\buddypress\members\members-loop.phpAnd replace
bp_member_avatar()
with
bp_member_avatar('type=full&width=50&height=50')March 31, 2014 at 12:21 pm #180550In reply to: Small Avatar Size in Activity Stream
danbp
ParticipantHi,
have you read the Codex about avatars ?
https://codex.buddypress.org/getting-started/guides/customizing-buddypress-avatars/March 31, 2014 at 12:21 pm #180549In reply to: 2.1 top features
John James Jacoby
KeymasterJumping the gun a bit, but your enthusiasm is greatly appreciated. The core team will likely put together a wish list immediately before we start 2.1 development. Until then, you can watch the state of all-things-2.1 over on trac at: https://buddypress.trac.wordpress.org/milestone/2.1
March 31, 2014 at 12:18 pm #180548In reply to: What to do against spambot registration?
danbp
ParticipantHi,
as you probably know, spam is a world wide disease and there are no ready to use solutions against it. Only tips at least.So can you please search and read on this forum before asking for such a remaining question ?
March 31, 2014 at 10:11 am #180542In reply to: Add Friend, javascript override
simonwillan
ParticipantOkay, In which case I’d like to override the some of the core ajax functions within this script. Is it as simple as adding filters or would I have to create a new file & folder buddypress/buddypress-functions.php and write a new set of ajax actions?
March 31, 2014 at 5:12 am #180537In reply to: 2.0 top features – ideas
Asynaptic
Participant@sooskriszta totally agree with you on your 3 (relatively) objective tests – this is why I suggested 2 key features that need to be improved in buddypress *immediately*:
1) spam fighting
2) fragment cachingFirst, 99.9% of buddypress communities have to deal with spam and it is mission critical (who wants a website overrun with spam? users leave, google rank drops, etc.). How many forum threads are opened again and again about people asking for help dealing with spam? how many different methods need to be cobbled together? it just makes sense to take the best practices and build them into the core.
Second, performance is an issue that is more and more important not only because speed is a do or die issue (there is ample evidence of a direct link between a website’s speed and its success in converting and in pageview counts)
with buddypress, regular caching plugins simply do not work, we need fragment caching, and we need it YESTERDAY!
there is already a tentative step in the right direction with rarst’s fragment cache plugin but this should be developed into a full solution and built into core.
everyone will benefit from improvements in caching and it will make a MASSIVE impact on the overall quality and success of buddypress as a platform
/drops mic
March 31, 2014 at 3:54 am #180534In reply to: scalablity of buddypress
thatmtnman
ParticipantDear Mr. Buddyboss…
Once again, thank you so much for the informative and specific reply. Two gigs of ram it shall be!
I wish I could attend your lecture…I really do. I’ve not been to a WordPress/Buddypress anything yet, and I am dying to go. Absolutely dying. I want to get far more involved with the WordPress/Buddypress company/community. We are both students (married, older etc) and are living on student loans…so for now, travel for us is limited to the bus 🙁
I have another question unrelated to capacity-should I start another thread, or may I ask it here?
cheers!
March 30, 2014 at 10:12 pm #180531Anonymous User 7600456
InactiveHi @boonebgorges,
Thanks for the reply. I went ahead and set up a clean install of WordPress with BuddyPress and bbPress and all is working as it should. So, this means that it isn’t anything actually wrong with BuddyPress but a conflict somewhere with something I have customised along the way.
When I work out what it is I will post back here.
In the meantime, thank you for your hard work and good luck with the release!
Best,
Joseph
March 30, 2014 at 8:40 pm #180529In reply to: 2.0 top features – ideas
@mercime
ParticipantAnd tables are not suitable for mobile devices
@sooskriszta Noted. But it can be done. If you look again at the BP survey results via mobile device, the table is responsive with some modifications made on Coyler’s code. Morever, as hnla mentioned in earlier post which I agree with, you do not change semantic markup to suit devices.
when 62.31% people list Responsive and 41.33% list Responsive, mobile-first as their Preferred BP Theme Features, to which specific aspect do you think they are referring?
Refers to whether the theme’s responsive styles (via CSS media queries or JS solution) were prepared for mobile viewing or for desktop viewing first.
-
AuthorSearch Results