Forum Replies Created
-
Tried using the BP classic plugin, but it made no difference. Pagination in private forums refuses to work.
Solved!
The Dutch translation file buddypress-nl_NL.po containes:
%s wrote a new post -> %1$s heeft een nieuw bericht %2$s geschreven
This should be altered to :
%s wrote a new post -> %s heeft een nieuw bericht geschreven
And compiled to buddypress-nl_NL.mo
Put a dummy value in the option_value of the options table where option_name = “disallowed_keys”
The code should be changed.
Exactly my problem with not approving member(spammer) requests.
No informational mail should be send to the requestor in case of disapproval!Fixed in 6.3.0
Added after line 56 in plugins/buddypress/bp-core/classes/class-bp-phpmailer:
phpmailer_is_6_0 = true;55 $phpmailer_is_6_0 = true;
56 }
57 $phpmailer_is_6_0 = true;
58 } else {works
Nobody ?
In older versions of buddypress i found in the bp-group-functions.php in function groups_send_membership_request this statement :
$requesting_user->comments = isset( $_POST['group-request-membership-comments'] ) ? $_POST['group-request-membership-comments'] : '';
which makes sense as the posting variable (group-request-membership-comments) should be handled to end up in the table bp_groups_members.
In the version 5.0.0 such a statement is not found (not by me that is), so this could explain the disappearing comments from the group membership request page.
Any help would be appreciated.
Hi,
I have this in the theme functions.php :
function noindex_buddypress() { if ( is_buddyPress() ) { echo '<meta name="robots" content="noindex, nofollow">'; } else { } } add_action( 'wp_head', 'noindex_buddypress' );
WP 5.3 that should be
Can confirm this looks odd.
Alle leden 2.651 (all members -> of groups ?)
Mijn vrienden 3Sorteren: Alfabetisch
Ledenoverzicht
Je bekijkt 1 – 20 van 3.325 leden (all users )Dashboard :
Alle (3.325) -> all users
Participant (2.651) -> buddypress groups participants.If i search members (as admin) for a non group participant it does show up.
However logging in as normal user (member of 2 groups) the total count is 2651 and non group participants don’t show up, which makes perfect sence.
However sorting alfabetcally indeed returns the number 3.325. And searching a non participant does now show up.Something seems wrong indeed.
Also added define( ‘BP_GROUPS_DEFAULT_EXTENSION’, ‘forum’ );
Happy now and thanks.
Chips, too bad, ‘groups’ it will be then.
If the group is private so is also the forum that belongs to it.
Tried it,
I click on “Private message” and arrive on my profile.
Only have to fill in the subject and the text. The recipient is already filled in.e.g.
Verzend naar (gebruikersnaam of naam van een vriend)ProfielfotoStephanie123
Dit is een aankondiging voor alle gebruikers.
Onderwerp [subject field]
Bericht [message field]
[send button]So in your case it is not normal behaviour.
In bp-groups-admin.php function bp_groups_admin_edit_metabox_add_new_members lacks
is_multisite() &&
wp_is_large_network is only loaded for multisites.
function bp_groups_admin_edit_metabox_add_new_members( $item ) { if (<strong> is_multisite() &&</strong> wp_is_large_network( 'users' ) ) { $class = ''; $notice = __( 'Enter a comma-separated list of user logins.', 'buddypress' ); } else { $class = 'bp-suggest-user'; $notice = ''; }
Thanks i’ll try.
Same problem here. Commented out the If statement and presto the activation emails arrive at Microsoft email services. Hopefully this will be fixed asap.
Thank you jcrr!