Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 17 replies - 1 through 17 (of 17 total)
  • @webmasterfreya

    Participant

    Tried using the BP classic plugin, but it made no difference. Pagination in private forums refuses to work.

    @webmasterfreya

    Participant

    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

    @webmasterfreya

    Participant

    Put a dummy value in the option_value of the options table where option_name = “disallowed_keys”

    The code should be changed.

    @webmasterfreya

    Participant

    Exactly my problem with not approving member(spammer) requests.
    No informational mail should be send to the requestor in case of disapproval!

    @webmasterfreya

    Participant

    Fixed in 6.3.0

    @webmasterfreya

    Participant

    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

    @webmasterfreya

    Participant

    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.

    @webmasterfreya

    Participant

    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' );

    @webmasterfreya

    Participant

    WP 5.3 that should be

    @webmasterfreya

    Participant

    Can confirm this looks odd.

    Alle leden 2.651 (all members -> of groups ?)
    Mijn vrienden 3

    Sorteren: 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.

    @webmasterfreya

    Participant

    Also added define( ‘BP_GROUPS_DEFAULT_EXTENSION’, ‘forum’ );

    Happy now and thanks.

    @webmasterfreya

    Participant

    Chips, too bad, ‘groups’ it will be then.

    @webmasterfreya

    Participant

    If the group is private so is also the forum that belongs to it.

    @webmasterfreya

    Participant

    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.

    @webmasterfreya

    Participant

    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 = '';
    	}

    @webmasterfreya

    Participant

    Thanks i’ll try.

    @webmasterfreya

    Participant

    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!

Viewing 17 replies - 1 through 17 (of 17 total)
Skip to toolbar