Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 17,001 through 17,025 (of 68,918 total)
  • Author
    Search Results
  • #180677
    Renato Alves
    Moderator

    Interesting 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. =)

    #180674
    Renato Alves
    Moderator

    Check out this thread: https://buddypress.org/support/topic/username-vs-display-name/ Maybe it can help.

    #180667
    aussiemike
    Participant

    @wesleysoccer – was that the css for buddypress theme or WP theme?

    Regards
    Mike

    #180665
    sundev
    Participant

    @modemlooper

    // 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.

    #180663
    valuser
    Participant

    As indicated the problem (on my installation) WAS a plugin.

    items 1 and 2 of my observations above have been eliminated by deactivating this plugin

    Buddypress Friends On-line

    Item 3 still persists (at least on my installation) even with trunk 8229

    #180659
    Shmoo
    Participant

    A 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.

    #180653

    In reply to: field visibility

    @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?

    #180650
    danbp
    Participant

    hi !

    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/

    #180638
    Halo Diehard
    Participant

    Hey, @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!

    #180637

    In reply to: Stop BuddyPress SPAM

    Halo Diehard
    Participant

    I 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.

    #180632
    @mercime
    Participant

    Ah 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/

    #180630
    modemlooper
    Moderator

    BP 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);
    #180600

    In reply to: Create Sub Profile

    This 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.

    #180573
    Asynaptic
    Participant

    Hi 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

    #180558
    Barnabas
    Participant

    I’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…

    pimark
    Participant

    Has anyone else come across this problem? Anyone from Buddypress able to offer some advice ?

    thanks

    #180554
    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.php

    And replace
    bp_member_avatar()
    with
    bp_member_avatar('type=full&width=50&height=50')

    #180550
    danbp
    Participant
    #180549

    In reply to: 2.1 top features

    Jumping 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

    #180548
    danbp
    Participant

    Hi,
    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 ?

    https://buddypress.org/support/search/spam/

    #180542
    simonwillan
    Participant

    Okay, 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?

    #180537
    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 caching

    First, 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

    #180534
    thatmtnman
    Participant

    Dear 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!

    #180531
    Anonymous User 7600456
    Inactive

    Hi @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

    #180529
    @mercime
    Participant

    And 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.

Viewing 25 results - 17,001 through 17,025 (of 68,918 total)
Skip to toolbar