Replies
Hello Brajesh,
I have buy it here: https://gplplugins.club/
And I using youzer platform.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"; }
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
Hello,
I have used this code but nothing has changed. Hotmail doesn’t yet receive activation mail
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 );
Great something like that I was looking for.
Thanks a lot, It works good for me.
Yes! Shortcodes will be very useful for me.
Thanks