Search Results for 'wordpress'
-
AuthorSearch Results
-
June 13, 2018 at 4:19 pm #274374
In reply to: problem with mentions–admin
r-a-y
KeymasterThe strings “admin” and “firstname-lastname” are no present in the respective user profiles. Those phrases ONLY exist as the @-mention name that appears in the profile page across from the picture.
You kind of answered your own question.
The at-mention name uses the
user_nicenamefield from thewp_usersdatabase table. This can differ from the display name. Theuser_nicenameinfo also isn’t exposed in the WordPress admin dashboard, which is why you might be confused.If a user registered manually on your site, this would be the
Usernamethat they enter on the registration page. If you imported a bunch of users from another system, check your database with a web app like phpMyAdmin or Adminer. You can also use a command-line tool like wp-cli to view the user fields:You can also try using a plugin like Edit Author Slug if you want the ability to edit the
user_nicenamefield, but use with caution (untested):Test in a local environment before deploying on your live site.
June 13, 2018 at 1:34 pm #274372In reply to: Need an alternative to Theme My Login
Paul
ParticipantHave you tried Login with Ajax?
June 13, 2018 at 12:34 am #274356In reply to: confirmation emails are not sent for new users
r-a-y
KeymasterIf you’ve already tried the solutions in this thread:
Then, here are a couple of other possible solutions:
1) Remove the “Reply-To” email address from BuddyPress emails.
By default, BuddyPress adds a “Reply-To” email header to each BuddyPress email containing the admin user’s email address.
I’m guessing email senders might have problems with this because the “From” email address and the “Reply-To” email address could use different domains. Email senders might think this is spammy and would reject the email. Just a guess. You’d have to look in your email logs to confirm.
Anyway, here’s a code snippet you can try in your theme’s
functions.phpor in wp-content/bp-custom.php:add_filter( 'bp_email_set_reply_to', function( $retval, $email_address ) { // Wipe out Reply-to email header if it matches the admin email address. if ( bp_get_option( 'admin_email' ) === $email_address ) { $retval = new BP_Email_Recipient( '' ); } return $retval; }, 10, 2 );2) Try setting a different “From” email address
If you are having problems sending any email on your WordPress install, you might have to set the “From” email address to one that contains your website domain.
There are a few plugins that can do this. Here are a couple:
3) Try using a WordPress email SMTP plugin
If all the above fail, try a SMTP email plugin:
https://wordpress.org/plugins/tags/smtp/—-
Please let me know if either of the solutions work.
June 12, 2018 at 10:48 pm #274355In reply to: how to filter bp_get_the_notification_description
shanebp
ModeratorYour syntax is wrong, add quotes around the first 2 parameters.
June 12, 2018 at 2:01 pm #274333In reply to: No href link in my header actions
Varun Dubey
Participant@der_velli try to debug with Default WordPress theme
June 12, 2018 at 2:00 pm #274332In reply to: help registration form
Varun Dubey
Participant@despostillar2009 GDPR support for BuddyPress is in the development queue. Meantime you can try https://wordpress.org/plugins/bp-gdpr/
June 12, 2018 at 12:03 pm #274325In reply to: acceptance of terms and conditions
iamdev
Participantyou can use terms and condition plugin you can even add privacy policy with little knowledge of html
June 12, 2018 at 8:11 am #274323In reply to: Sending emails out from Buddy Press
Varun Dubey
ParticipantYou can try https://wordpress.org/plugins/email-users/ it will allow sending email to all members.
It’s not going to create a mailbox for all users 🙂June 11, 2018 at 10:42 am #274305In reply to: Private Messaging within Groups
Varun Dubey
Participant@optimized Private messaging is available at the individual level, you can use https://wordpress.org/plugins/mass-messaging-in-buddypress/ to send a message to all group members or extend the same
June 11, 2018 at 9:19 am #274304In reply to: My website keeps crashing using buddypress
Varun Dubey
Participant@sambenny you can turn off heartbeat api using for logout users https://wordpress.org/plugins/heartbeat-control/
June 11, 2018 at 7:37 am #274303In reply to: Best practise SEO setup for BP
Varun Dubey
Participant@eric01 There is a new plugin, you can try it https://wordpress.org/plugins/bp-power-seo/
June 11, 2018 at 7:19 am #274301In reply to: Widget sidebar content preview
Varun Dubey
Participant@mrditt you can try BP Lock Plugin https://wordpress.org/plugins/lock-my-bp/
June 9, 2018 at 8:47 pm #274269In reply to: Registration page Font style and size
TreeTrail
ParticipantSlava, the code that you posted above is the most elegant solution that I’ve seen for enhancing readability. I’m using it through the WordPress “Additional CSS” functionality. It works perfectly on the “Account Details” side on my registration page. However, I’d really love to do the same thing for the “Profile Details” side. I searched for several hours with no luck. Any suggestions would be very greatly appreciated.
~April
June 9, 2018 at 11:13 am #274262Topic: Best practise SEO setup for BP
in forum How-to & TroubleshootingEric
ParticipantHi,
im wondering what´s currently the best practise SEO setup/solution for BP3.x
if my information is correct, for example, Yoast SEO still does not cover BP related pages and features like the activity stream, profile pages and groups, correct?in the past i used some mods based on
Making WordPress SEO plugin compatible with BuddyPress Part 2
but i am not sure if this is still state of the art.i really like Yoast SEO and use it for my members blogs as default but whats the best solution for BP, are there any new mods or plugins available?
tnx, Eric
June 9, 2018 at 9:36 am #274261In reply to: show loading animation
iamdev
Participanti am able to do animation for wordpress post but how to do animation for activity stream
June 9, 2018 at 8:05 am #274260In reply to: Description Groups
Theunis Coetzee
ParticipantFor a temporary workaround this worked for me:
buddypress\bp-templates\bp-nouveau\buddypress\groups\single\cover-image-header.php
line 62
<?php echo esc_html( bp_nouveau_group_meta()->description ); ?>replace with:
<?php echo bp_nouveau_group_meta()->description; ?>reference: https://codex.wordpress.org/Function_Reference/esc_html
June 8, 2018 at 8:24 pm #274257In reply to: Advice on BuddyPress + bbPress
Venutius
ModeratorHave you looked at Auto Group Join? also Registration Groups? These could help you do what you achieve. Auto Group Join includes a handy admin page where you can arrange who is in what group.
Hiding the Group Activity (Home) page is a bit more involved, but one option could be to simply disable activity?
June 8, 2018 at 4:05 pm #274239In reply to: Users can’t register and they don’t show up
Venutius
ModeratorAh, That’s an error I’ve been unable to fix, the test system I tried it out on I ended up completely reinstalling. I looked all over for what might be wrong but no joy, I think that it’s down to permalinks for the register page becoming corrupt.
I reported it on Trac here: https://buddypress.trac.wordpress.org/ticket/7744
Maybe you can add to the ticket?
June 8, 2018 at 3:44 pm #274237In reply to: Users can’t register and they don’t show up
T
ParticipantI did deactivate all the plugins aside from BP and it had messed something up. After reactivating everything, I think I had to save my permalinks again. It’s been a couple of months, but something messed up that I had to fix after reactivating everything.
Here’s how the mess began. I was getting a ton of spam users. A guy who runs a wordpress group told me to change the url from “register” to something else. I changed http://starwarscards.net/register to http://starwarscards.net/registerSWC and everything went downhill from there. So, I changed it back, saved my permalinks… still not working. I then deleted the register page, created a new one, saved my permalinks…and it was working about a month ago when I tested it, but I just got an email yesterday from someone who had the activation link error 🙁
June 8, 2018 at 6:25 am #274215In reply to: Profile field Visibility: Support Admin
onions2578
Participantyou could setup another buddypress site and use sync users to it https://premium.wpmudev.org/project/wordpress-user-synchronization/
and then ask users to share their info to experts there,
and rename to friends to experts, and all the profile fields default to share with experts only
works for me 🙂 and is better than what I had in mindp.s.
redirect registration to master site due to plugin one way syncJune 7, 2018 at 10:32 pm #274211In reply to: BuddyPress doesn’t sends confirmation Mail
r-a-y
KeymasterAre you able to send other emails on your site?
If not, you might want to try a WordPress email SMTP plugin.
June 7, 2018 at 10:27 pm #274207In reply to: Can’t Post in Activity Stream
r-a-y
KeymasterThanks for the bug report.
I’ve created a ticket for this here – https://buddypress.trac.wordpress.org/ticket/7897
In the meantime, if you need this functionality working for whatever reason, you can change your template pack to BP Legacy under “Settings > BuddyPress > Options”.
June 7, 2018 at 5:26 pm #274194In reply to: Activity Load More Not Working
r-a-y
KeymasterThanks everyone for their reports.
This only affects the BP Legacy template pack. I’ve added a ticket for this here – https://buddypress.trac.wordpress.org/ticket/7896
The workaround above is fine for now, but here’s my potential fix for this – https://buddypress.trac.wordpress.org/attachment/ticket/7896/7896.01.patch
June 7, 2018 at 4:18 pm #274192In reply to: Settings on profile not showing
r-a-y
KeymasterWhat theme are you using? Have you tried changing your theme to a WordPress default theme to see if that fixes your problem?
June 7, 2018 at 4:16 pm #274191In reply to: Description Groups
r-a-y
KeymasterThis is a known bug with the Nouveau template pack.
Keep track of https://buddypress.trac.wordpress.org/ticket/7895
In the meantime, you can use the Legacy template pack by navigating to “Settings > BuddyPress > Options” and selecting Legacy.
-
AuthorSearch Results