Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 8,051 through 8,075 (of 68,969 total)
  • Author
    Search Results
  • #265103
    danbp
    Participant

    Hi,

    open your buddypress-nk_NO.po file with a text editor (notepad++ or so) and check you have a plural form for the untranslated string.

    The’re several strings containing “members” with a count, but it will be easy to find if you search for “msgid_plural”.
    At least, you should find something constructed like this:

    #: bp-templates/bp-legacy/buddypress/members/single/groups/invites.php:34
    msgctxt "Group member count"
    msgid "%d member"
    msgid_plural "%d members"
    msgstr[0] "%d medlem"
    msgstr[1] "%d medlemmer"

    Again, note that it is only an example, you may find other strings containing “medlem” that you have eventually to adjust.

    The important thing to control is the existence of “%d” and naturally, the presence of the plural form string in the translation.

    If you still have trouble after controling/repairing/modifying, it could be possible that it is your theme. To ensure, do the same check in your theme translation.

    Other thing to take in account

    I’m not 100% sure, but so far i remember, the norvegian buddypress version is not completely translated.
    Unfortunately, translate.wordpress.org is actually down and it is impossible to access the plugins translations at this time…

    What i expect is that you have an old po file, fully translated, but perhaps not with the most recent changes and updates, which could explain that even if you have plural forms in your translation, they won’t show up in some places.
    For ex. because the plural code changed from %s (in your version) to %d or something like that.
    To avoid this, you can download the most recent pot file and rename it to buddypress-nk_NO.po.
    Then you rename YOUR current version to .pot(with a T), import it to the new file, and adjust or complete the missing strings.

    #265085
    r-a-y
    Keymaster

    It took me awhile to think about what might be causing the issue and I just remembered the problem.

    It’s a theme conflict with BuddyPress.

    BuddyPress adds the CSS class hidden to a group in the group loop. Some themes might already have a .hidden class declared, so hidden groups are not shown because of this.

    Can you add the following CSS snippet to your CSS?

    #buddypress .bp-single-group.hidden {display:block;}

    I believe this should fix your problem.

    #265076
    Slava Abakumov
    Moderator

    Several days ago sent a new issue!

    BuddyPress Newsletter #26 – BP 2.9 news, new plugin, useful code snippets

    https://www.getrevue.co/profile/bpmail/issues/26-bp-2-9-news-new-plugin-useful-code-snippets-49928

    mikeboltonca
    Participant

    I’ve submitted an enhancement Trac here: https://buddypress.trac.wordpress.org/ticket/7489#ticket.

    In the meantime, I’ve implemented the following hack to allow non-members to post on a group’s activity stream:
    In /plugins/buddypress/bp-groups/bp-groups-functions.php, comment out lines 1215 and 1216.

    Original:

    if ( !bp_current_user_can( 'bp_moderate' ) && !groups_is_user_member( $user_id, $group_id ) )
    	return false;

    Hacked:

    //if ( !bp_current_user_can( 'bp_moderate' ) && !groups_is_user_member( $user_id, $group_id ) )
    	//return false;

    This removes the check for “Is this an admin or a group member?”, allowing anyone to post.

    r-a-y
    Keymaster

    Do you have the friends component active?

    It could be caused by the at-mentions suggestions code.

    Try disabling it by adding the following to your theme’s functions.php or bp-custom.php file:
    remove_action( 'bp_activity_mentions_prime_results', 'bp_friends_prime_mentions_results' );

    #265055
    r-a-y
    Keymaster

    How did you install bbPress?

    It sounds like you activated the “Group Forums (Legacy)” component in BuddyPress. You should try disabling that.

    #265052
    r-a-y
    Keymaster

    You need to use a custom language file.

    View the following article for more info:

    Languages and Translations

    #265050
    anandrajog
    Participant

    Hello, I am having the same problem. I have installed buddypress plugin and a bunch of other plugins.

    Now, I am unable to save anything in the WP editor in the frontend in the visual mode. I have to switch to the text mode and then save the changes.

    Since the site is live, I am not sure the correct procedure to remove and reinstall. I don’t want to lose user data.

    Any suggestions how I can resolve this?

    #265047
    timtellean
    Participant

    WP ver. 4.73
    BP ver. 2.82
    metro magazine pro theme

    I see this error when trying to view my group.

    Warning: Creating default object from empty value in /home/wp_5cnhby/ntcep.org/wp-content/plugins/buddypress/bp-groups/classes/class-bp-groups-member.php on line 1170

    #265038
    WPisGOOD
    Participant

    Excellent solution from @livingflame

    The Link: SOLUTION

    #265029
    Henry Wright
    Moderator

    Check out this article

    Using bp_parse_args() to filter BuddyPress template loops

    bp_before_has_members_parse_args is the filter hook you’ll need. meta_key and meta_value will need to be used.

    Hope this helps!

    #265009
    Ashim Adhikari
    Participant

    I disabled All Activity from buddypress and everythning changed back to normal

    #265004
    snookerist
    Participant

    Thank you for advice!

    I have created issue on Trac
    https://buddypress.trac.wordpress.org/ticket/7484#ticket

    #265002
    Henry Wright
    Moderator

    Hi @snookerist

    Can you report this issue on Trac?

    https://buddypress.trac.wordpress.org/

    #264961

    In reply to: Filtering activity

    Venutius
    Moderator

    You probably just need to copy the content of your old child theme buddypress directory into your new childtheme directory.

    #264949
    danbp
    Participant

    Please read the forum before asking… A similar question came up yesterday with an answer to

    This modification not work… I don’t understand why

    customizing profile-header

    #264948
    danbp
    Participant

    Copy the whole content of that example file into bp-custom.php.

    You can also transform it into a mu-plugin by just adding it some header information.

    Once done, you can test the tabs and try to understand how they work. And then apply your own preference.

    #264946
    berthaboy73
    Participant

    OK – I’ve just found this:

    add_action('bp_core_activated_user', 'kleo_add_member_activity');
    function kleo_add_member_activity($user_id)
    {
    add_user_meta( $user_id, 'last_activity', date("Y-m-d H:i:s"));
    }

    on https://seventhqueen.com/blog/buddypress/show-users-members-directory-right-account-activation.html

    So will just have to import user data again (using https://codection.com/import-users-csv-meta/) and modify the code to add that activity record.

    #264941
    danbp
    Participant

    @possip,

    what i wanted to say was that if you use the allow header image option, BP will use a different header template. When you don’t use this option, BP will use member-header.php

    The’re two component who use header’s: members and groups.

    To handle groups header, it is exactly the same logic as for the members header.
    In the group directory (bp-templates/bp-legacy/buddypress/groups), you have 2 files named group-header.php and cover-image-header.php where you can handle goup header customization.

    #264939
    danbp
    Participant

    Try this plugin:
    https://github.com/r-a-y/buddypress-usernames-only

    For the “why”, perhaps it is because “chat” and “forum” have their own logic. Both aren’t part of BuddyPress.
    Note also that there is no obligation to use all the things appearing on the templates. If you don’t want them, symply remove or hide them.

    For example, the names who appear on profile header are effectively different. Why would you need to use both, that’s nonsense! I guess this is only in so you can choose which one is better for your project. And it is so because (probably) it is better and easier to choose between something you see thant between something theoretical exposed or detailed in code comments…

    Note that my remark concern only the appearence, not the internal fonctionality of username vs.displayname or nicename.

    #264937
    shanebp
    Moderator
    #264894
    Droidism
    Participant

    Environment:
    PHP 7.0.3
    Apache webserver
    MySQL v5.5.49
    WordPress v4.7.3
    BuddyPress v2.8.2
    Theme: Emmet Lite v1.5.0
    Other plugin: none

    Hi,

    I have installed BuddyPress on a fresh local install and used the Emmet Lite theme.

    My problem is that when I create a user, login to the site using a completely different browser, with the cache purged and browsing history removed on start, and go to the user profile, I do not have the option to change the profile visibility. The dropdown for the Name is not showing at all.

    Please see settings-profile-visibility on the BuddyPress codex.

    When you view the image you will see “Base -> Name” and “Visibility -> Everyone” in a dropdown. In my install the “Visibility -> Name” is not a dropdown and not selectable attall.

    Thanks in advance for helping me figure this one out.

    #264893
    Henry Wright
    Moderator

    In that case there’s a few options. You could try to find a plugin. If a plugin isn’t available you could suggest the feature. Alternatively you could hire a developer.

    Hope this helps!

    #264888
    danbp
    Participant

    General knowledge about Groups

    Groups

    Your question is really too vague (a way to reorganize the groups). Groupss can already be filtered by Last Active (default), Most Members, Newly Created, or Alphabetical.

    If not enough, you need to give more details about what you want.

    #264886
    danbp
    Participant
Viewing 25 results - 8,051 through 8,075 (of 68,969 total)
Skip to toolbar