BuddyDev

Search

Replies

  • Participant
    Level: Initiated
    Posts: 8
    Jean-Philippe on #33598

    Hello Brajesh,

    I have buy it here: https://gplplugins.club/
    And I using youzer platform.

  • Participant
    Level: Initiated
    Posts: 8
    Jean-Philippe on #33568

    Hello Everyone,

    It is a little contribution.

    For youzer users, if you want to display a pen icon before ‘create a group’ option, you can use this css code to do it. Add this one in the custom css panel of your theme.

    
    /*Add pen icon for group creation option*/
    .yz-tabs-list-gradient a#create-group i{
    	background: #ffca6e;
    	background: url(../images/dotted-bg.png),linear-gradient(to left,#f9d423 ,#ff4e50);
    	background: url(../images/dotted-bg.png),-webkit-linear-gradient(right,#f9d423 ,#ff4e50);
    }
    a#create-group i.fa-globe::before{
    	content:"\f303";
    }
    
  • Participant
    Level: Initiated
    Posts: 8
    Jean-Philippe on #33548

    Hello,
    It works good for me.
    Thanks,

  • Participant
    Level: Initiated
    Posts: 8
    Jean-Philippe on #33158

    Hi Brajesh,

    I have done some investigations :
    1 – My webhost was facing to black listing IP concerning hotmail. That was fixed.
    2 – When my buddypress sent an activation email, the email adress was ‘wordpress@mydomain.com’. I have reconfigured my WordPress SMTP. Now it’is good.

    Thanks

  • Participant
    Level: Initiated
    Posts: 8
    Jean-Philippe on #32654

    Hello,

    I have used this code but nothing has changed. Hotmail doesn’t yet receive activation mail

  • Participant
    Level: Initiated
    Posts: 8
    Jean-Philippe on #32608

    Hello,
    In my case I don’t have this code :

    if ( ! empty( $tokens['unsubscribe'] ) && $tokens['unsubscribe'] !== site_url( 'wp-login.php' ) ) {
    	$user = get_user_by( 'email', $tokens['recipient.email'] );
    
    	$headers['List-Unsubscribe'] = sprintf(
    		'<%s>',
    		esc_url_raw( bp_email_get_unsubscribe_link( array(
    			'user_id'           => $user->ID,
    			'notification_type' => $email->get( 'type' ),
    		) ) )
    	);
    }

    but, I have this one. When I’m trying to remove it, I get a bug.

    
    	// Add 'List-Unsubscribe' header if applicable.
    	if ( ! empty( $tokens['unsubscribe'] ) && $tokens['unsubscribe'] !== wp_login_url() ) {
    		$user = get_user_by( 'email', $tokens['recipient.email'] );
    
    		$link = bp_email_get_unsubscribe_link( array(
    			'user_id'           => $user->ID,
    			'notification_type' => $email->get( 'type' ),
    		) );
    
    		if ( ! empty( $link ) ) {
    			$headers['List-Unsubscribe'] = sprintf( '<%s>', esc_url_raw( $link ) );
    		}
    	}
    
    	return $headers;
    }
    add_filter( 'bp_email_get_headers', 'bp_email_set_default_headers', 6, 4 );
    
  • Participant
    Level: Initiated
    Posts: 8
    Jean-Philippe on #32537

    Great something like that I was looking for.

    Thanks a lot, It works good for me.

  • Participant
    Level: Initiated
    Posts: 8
    Jean-Philippe on #32527

    Yes! Shortcodes will be very useful for me.
    Thanks