Search Results for 'buddypress'
-
AuthorSearch Results
-
March 31, 2017 at 3:38 pm #265103
In reply to: ONE word I can’t find/translate.. Please help?
danbp
ParticipantHi,
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.March 30, 2017 at 4:00 pm #265085In reply to: Hidden Groups – Unable to access as Super Admin
r-a-y
KeymasterIt 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
hiddento a group in the group loop. Some themes might already have a.hiddenclass 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.
March 30, 2017 at 6:47 am #265076In reply to: BuddyPress Newsletter relaunched
Slava Abakumov
ModeratorSeveral 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
March 29, 2017 at 9:18 pm #265072mikeboltonca
ParticipantI’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.
March 28, 2017 at 8:51 pm #265057r-a-y
KeymasterDo 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.phpor bp-custom.php file:
remove_action( 'bp_activity_mentions_prime_results', 'bp_friends_prime_mentions_results' );March 28, 2017 at 8:46 pm #265055In reply to: Buddypress Plugin bbpress Forum on line 301
r-a-y
KeymasterHow did you install bbPress?
It sounds like you activated the “Group Forums (Legacy)” component in BuddyPress. You should try disabling that.
March 28, 2017 at 8:30 pm #265052In reply to: Change Admin Bar Menu Links?
r-a-y
KeymasterYou need to use a custom language file.
View the following article for more info:
March 28, 2017 at 5:35 pm #265050In reply to: Visual editor not working
anandrajog
ParticipantHello, 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?
March 28, 2017 at 1:57 pm #265047Topic: Error in Group Docs
in forum How-to & Troubleshootingtimtellean
ParticipantWP ver. 4.73
BP ver. 2.82
metro magazine pro themeI 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
March 28, 2017 at 6:25 am #265038In reply to: [Resolved] Hide Admin from Members and Activity
WPisGOOD
ParticipantExcellent solution from @livingflame
The Link: SOLUTION
March 27, 2017 at 4:43 pm #265029Henry Wright
ModeratorCheck out this article
bp_before_has_members_parse_argsis the filter hook you’ll need.meta_keyandmeta_valuewill need to be used.Hope this helps!
March 27, 2017 at 2:21 am #265009In reply to: All users marked as spammed
Ashim Adhikari
ParticipantI disabled All Activity from buddypress and everythning changed back to normal
March 26, 2017 at 4:10 pm #265004In reply to: Resize member avatar error
snookerist
ParticipantThank you for advice!
I have created issue on Trac
https://buddypress.trac.wordpress.org/ticket/7484#ticketMarch 26, 2017 at 3:44 pm #265002In reply to: Resize member avatar error
Henry Wright
ModeratorMarch 23, 2017 at 8:37 pm #264961In reply to: Filtering activity
Venutius
ModeratorYou probably just need to copy the content of your old child theme buddypress directory into your new childtheme directory.
March 23, 2017 at 12:57 pm #264949In reply to: Can’t change user_mentionname by buser_username
danbp
ParticipantPlease read the forum before asking… A similar question came up yesterday with an answer to
This modification not work… I don’t understand why
March 23, 2017 at 12:54 pm #264948In reply to: Add New Tab Private to each user
danbp
ParticipantCopy 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.
March 23, 2017 at 11:05 am #264946In reply to: Automatically activate users added by administrator
berthaboy73
ParticipantOK – 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.
March 23, 2017 at 8:54 am #264941In reply to: customizing profile-header
danbp
Participantwhat 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.March 23, 2017 at 8:39 am #264939In reply to: Username vs profilename
danbp
ParticipantTry this plugin:
https://github.com/r-a-y/buddypress-usernames-onlyFor 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.
March 23, 2017 at 5:27 am #264937In reply to: Anyone Know How I can Get Buddypress version 2.8.1
March 22, 2017 at 12:16 pm #264894Topic: Profile Visibility Not showing Dropdown
in forum How-to & TroubleshootingDroidism
ParticipantEnvironment:
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: noneHi,
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.
March 22, 2017 at 10:44 am #264893In reply to: hide members list on opening directory
Henry Wright
ModeratorIn 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.
- https://en-gb.wordpress.org/plugins/
- https://wordpress.org/ideas/
- https://buddypress.org/support/forum/plugin-forums/bp-jobs-board/
Hope this helps!
March 22, 2017 at 9:08 am #264888In reply to: How Do You Reorganize Groups?
danbp
ParticipantGeneral knowledge about 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.
March 22, 2017 at 9:02 am #264886In reply to: Get error 508 on buddy press. what I should do
danbp
Participant -
AuthorSearch Results