Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 13,051 through 13,075 (of 69,016 total)
  • Author
    Search Results
  • danbp
    Participant

    The unique field coming with BP xtended profile is called Name by default. This field name can be changed and you can add some specific description to it to fit your need.

    On the register page you have on the left the 3 mandatory fields from WP
    username
    password
    email

    on the right BP’s Name field in which you can enter first and last name.

    Registration

    #238882
    danbp
    Participant

    You forgot to mention your bug report:
    https://buddypress.trac.wordpress.org/ticket/6428

    #238881
    thomasoriis
    Participant

    Actually It is solved if I disable profile sync between wordpress and buddypress – but what does that mean any way? Will it kill my client side to disable profile sync?

    #238880
    r-a-y
    Keymaster

    At the moment, you can’t.

    This is handled in the bbPress plugin:
    https://bbpress.trac.wordpress.org/browser/tags/2.5.7/includes/extend/buddypress/groups.php#L55

    You could try overriding those variables on the 'bp_include' hook. See where bbPress initializes BuddyPress:
    https://bbpress.trac.wordpress.org/browser/tags/2.5.7/includes/core/actions.php#L132
    https://bbpress.trac.wordpress.org/browser/tags/2.5.7/includes/core/extend.php#L38

    So in theory, you could overload those slugs on the bbpress()->extend->buddypress object on the 'bp_include' hook after priority 10.

    Untested, but see if that works. This will also break all your old forum links in the activity stream if you did this.

    Mickey
    Participant

    Actually thats easy to do I see it now, but I am wondering why was buddypress done it in this way, by having one field (nickname) instead of two – first and last names? With nicknames its much more difficult to sort.

    Mickey
    Participant

    Thanks, the issue was caused by
    BuddyPress Real Names plugin

    shanebp
    Moderator

    It sounds like the requests are being generated by a plugin or some other custom code – probably related to registration.
    Try turning off all plugins except BuddyPress and see it the issue persists.

    #238867
    shanebp
    Moderator

    Try this in your theme/functions.php or in bp-custom.php

    function klosurdo_unlink_fields( $field_value ) {
    
    	$no_link_fields = array( 'Photographer Bio' );
    
    	$bp_this_field_name = bp_get_the_profile_field_name();
    
    	if ( in_array( $bp_this_field_name, $no_link_fields ) )
    		$field_value = strip_tags( $field_value );
    
    	return $field_value;
    
    }
    add_filter( 'bp_get_the_profile_field_value', 'klosurdo_unlink_fields', 99, 1 );
    #238863
    danbp
    Participant
    shanebp
    Moderator
    #238832

    In reply to: Groups issue

    Rene Streber
    Participant

    So back to buddypress forum 😉

    First of, it is working again but I created a new page without a parent (first level) and allocated the group component to that new page.

    The old page was at a second level and as I told you, had the same issue to open the single groups with another theme.

    Now it is also working with new Boss Theme!

    Thanks for your quick support!

    danbp
    Participant

    it feels like “Groups” are one of the biggest draws to BuddyPress that makes it more social

    It’s one of the interrest of BuddyPress, indeed !

    Yes, you can remove status from the template. Search this forum, the’re many topics about this subject.

    You could remove this from groups/single/home.php – needs just a template overload.

    <div id="message" class="info">
    <p><?php bp_group_status_message(); ?></p>
    </div>
    fmckinnon
    Participant

    Dan,
    Thanks so much for your help. I’ve enlisted some people in our existing forums to signup in our staging area and poke around a few days and see what they think as well.

    The main aim of my site: to make it more inclusive to the members .. meaning, right now, we have thousands of people who read the articles but never engage. The only people we get added to our mailing list are forum members, so yes – one of main aims is to grow the mailing list and membership base.

    Time to manage? not a problem, we have lots of devoted forum members who are happy to volunteer as mods/admins.

    As you pointed out, we do have the global forum currently (via vBulletin) so initially, the “sitewide forums” would make the most sense. If we did that, I’m not sure we even need to bother with creating groups. But, on the surface, to me — it feels like “Groups” are one of the biggest draws to BuddyPress that makes it more social …

    When you say “you can remove this feature in some places” – can you elaborate? Can the status updates/comments inside of Groups be turned off, only allowing discussion via the group forum?

    danbp
    Participant
    fmckinnon
    Participant

    Hey Dan,
    Yeah – I understand that – spent a lot of time reading, and have installed BuddyPress and bbPress on my staging domain.

    I’ve experimented around w/ the Groups features (including allowing a Group to have a forum, etc). At this point, I realize I’m getting into personal preference …so with that being understood, here’s my question:

    What’s the real point of Status Update/Activity Streams in the individual groups in BuddyPress if you are going to be also having forums via bbPress? It seemed and felt cluttered and redundant to me.

    Like I created a group called “Songwriters” and linked it to the “Songwriters” forum. But, members of the Group can post status updates in the Group, that don’t show up in the forum. And if a member of the group posts in the forum, it does show up in the “forum” section of the group, but doesn’t show up in the activity feed for the group.

    It almost feels like the two spaces are competing, I’m not sure I follow the rationale. Again, I realize it’s preference, but in your opinion, if you are going to utilize bbPress forums, is it best to just turn groups off?

    What I’m trying to prevent is having the “group” discussions having in two separate areas. I can see how you’d have some discussion happening in the forum, and then someone else may post a topic as a “status update” in the group, and start getting comments there.

    Does this make sense?

    caniwigirl
    Participant

    Good news everyone. My theme developers and I have solved this issue on the theme I am using!

    The first tricky hurdle was discovering a !important directive in the main.css of the theme for handling .hidden so I removed it to become .hidden{display:none;visibility:hidden} so styling in my child theme would work.

    In my child theme, I did an ‘inspect element’ to discover that the hidden groups were listed as:

    <li> class='odd hidden is-admin is-member">_</li>
    <li> class='even hidden is-admin is-member">_</li>

    So, I added the following code to my style.css in the child theme

    .odd.hidden.is-admin.is-member {
    display: block;
    visibility: visible;
    }
    
    .even.hidden.is-admin.is-member {
    display: block;
    visibility: visible;
    }

    This worked for admin, but not members of the groups who weren’t admins so… Logged in as one of those and using ‘inspect element’ I found that private groups were listed as:

    <li> class='odd hidden is-admin is-member">_</li>
    <li> class='even hidden is-admin is-member">_</li>

    Applying the same logic as above, I added the following code to my style.css

    .odd.hidden.is-member {
    display: block;
    visibility: visible;
    }
    
    .even.hidden.is-member {
    display: block;
    visibility: visible;
    }

    And now everything works 🙂

    I don’t know if anyone at BuddyPress support can help tidy up my code, but it does the trick and I hope it helps you @bewitchingfiction @donalconlon @olay And thanks for your help @danbp

    danbp
    Participant

    Anything about this is explained here

    Installing Group and Sitewide Forums

    and also on bbpress site.

    #238799
    danbp
    Participant

    See in bbp forum settings and modify the group forum(parent) name.

    Installing Group and Sitewide Forums

    #238797
    shanebp
    Moderator

    As it says in that thread – to entry.php
    Specifically buddypress\bp-templates\bp-legacy\buddypress\activity\entry.php

    And of course create a template overload of that file.

    danbp
    Participant

    hi @fmckinnon,

    Should we also use BuddyPress?

    bbPress is a separate WP forum plugin. You can use it on any WordPress install.

    BuddyPress is a separate WP members community plugin. You can use on any WordPress install.

    Confused by the difference between “Groups” in Buddypress and the forums … and “Group” forums.

    BP groups are members activities grouped under a same hood: the group. So it’s a typical BP behave. A group is not a forum, even if group discussion can be followed with help of a minimalistic publishing tool, the what’s new ? form aka notice editor. A kind of wall discussion retrained to each group, without any usual forum tool.

    If you use bbPress AND buddyPress, you have the ability to categorize the forum into groups. In other words, you can assign a forum to any group of your choice.

    As you can read on Codex, you have the option for a global forum only, or group forums only or if you have time and many mods, group and global forums.

    For the last question, you already know that vbulltetin can be imported. For the user i have no answer because i never used this, but one thing is sure, WP use only one user table, no matter the other used plugin.

    BuddyPress “shows” users, but doesn’t manage them. bbPress “shows” topics, but doesn’t manage user. That’s WP stuff.

    I don’t know if you should use BP and bbPress together simply in regards of these technical explanation. So far i already experimented with BP, they are many other points to take in consideration if you want to built a community site.

    #238790

    In reply to: Groups issue

    danbp
    Participant

    Apparently the issue is clearly related to Boss theme, no ?
    You have to ask on the theme support, support is included in the licence price and we haven’t free access, so it’s difficult to help you. Sorry.

    I suspect the theme to not use some very recent modification around localization. Since BP 2.0 many strings where enhanced with translators ready comments and somme other little details, like points or comas.

    As example, my groups (x) is coded My Groups <span>%s</span> in BP 2.2
    As you say it’s not translated, this means that the original (theme) code is wrong.
    Could be My groups <span>%s</span> or my groups <span>%</span> (lower case, missing ‘s’)…
    Verify this for each string.
    Compare the result between buddypress.pot and what you see in theme’s source.

    Other common issue example. Groups is not translated on My Profile sub nav menu.

    Actually, BP use this in bp-activity/bp-activity-loader.php
    'title' => _x( 'Groups', 'My Account Activity sub nav', 'buddypress' )

    Not so long in the past, it was
    'title' => __( 'Groups', 'buddypress' )

    The important thing for gettext to work, is the difference between _x and __ !

    Updating a theme or plugin to fetch those kind of details is a time consuming detail work. An the devil is in details… and custom themes use custom functions or complex template overloads.

    But at least, you know where and what to control now. 😉

    #238789
    danbp
    Participant
    #238788
    danbp
    Participant

    Additionaly you can use/be inspired by this:
    https://buddypress.org/support/topic/hide-admins-activities-from-all-activity-feeds-in-buddypress/#post-223433

    Successfully tested on BP 2.2.3.1 WP 4.2.2 Twenty Twelve

    #238787
    PinkishHue
    Participant

    I’ve been thinking of this a lot myself, in the way that Facebook or Gmail for example update their title tags. This is a great way of encouraging engagement in the site as people see the number even if their browser is minimised and they’re off working on something else.

    I haven’t tried to implement this myself yet but will have a try asap.

    I guess it’s a case of:

    adding a conditional in to the <title > tag in the themes header.php that says IF there are notifications then display the count. Then, have the page refresh periodically to update the count (or does buddypress do this already to update notifications? I’d have to check)

    So just need to find the code that generates the notifications count.

    Hopefully it’s that simple, but we’ll see 🙂

    #238785

    In reply to: Groups issue

    Rene Streber
    Participant

    Hi,
    I deactivated all plugins,
    I checked all permalinks,
    activated the twenty four theme from wordpress instead of the Boss theme (language looked fine),
    activated buddypress (language looked fine, everything is correctly translated)

    activated the BOSS Theme (language is not 100% translated:
    examples: active, all groups, my groups, group has xx members, newly created etc. is not translated
    although we installed the newest german translation (mo/po in wp-content/languages/plugins)

    The same translation problem exists with sidewide activity as well as member directory (here all members, my friends in English)

    For groups (..community/gruppen; parent is community, template is default)
    For members (..community/mitglieder; parent is community, template is default)

    404 error if I try to open any group with wordpress or with the boss theme

    I did not run the last steps, because the issue is still present.

    Ps Every buddypress component has its own unique page

    Rene

Viewing 25 results - 13,051 through 13,075 (of 69,016 total)
Skip to toolbar