Search Results for 'wordpress'
-
AuthorSearch Results
-
November 7, 2018 at 8:22 pm #280720
In reply to: Can Buddy Press use Forgot Password Key
Prashant Singh
ParticipantNovember 7, 2018 at 7:47 am #280410In reply to: [VERY URGENT] Register page not showing
Prashant Singh
ParticipantThis is always created on the root of the WordPress installation. Please go to this https://www.shoutmeloud.com/how-to-edit-your-wordpress-htaccess-file.html and check how you can edit it.
Thanks
November 6, 2018 at 8:31 pm #280380In reply to: [VERY URGENT] Register page not showing
Prashant Singh
ParticipantHi,
Why is there index.php in URL? Please try to check your htaccess file code and compare with the basic one https://codex.wordpress.org/htaccess
Thanks
November 6, 2018 at 8:05 am #280345In reply to: Hide members own pages from other members
Prashant Singh
ParticipantNovember 4, 2018 at 12:41 pm #279949In reply to: Turn off admin notification for each subscription
Prashant Singh
ParticipantHi,
Please check this link: https://wordpress.stackexchange.com/questions/90311/turn-off-admin-emails-for-new-user-registrations
You can paste the code in your child theme’s functions.php or can use code snippets plugin.
Thanks
Bit Boy
ParticipantHello,
You can use this plugin for showing the ID in the dashboard.and you may add following code to your theme’s functions.php to show the ID on user profile when the user is viewing his/her own profile or it is being viewed by the site admin.
/** * Show User ID on a user's profile to the profile owner or Administrator. */ function bidboy_show_displayed_user_id() { if ( bp_is_my_profile() || is_super_admin() ) { echo 'ID: ' . bp_displayed_user_id(); } } add_action( 'bp_before_member_header_meta', 'bidboy_show_displayed_user_id' );Best Regards
BNovember 3, 2018 at 7:19 pm #279799In reply to: Newbie question
Bit Boy
ParticipantHi,
BuddyPress works on top of WordPress to add community/social features. The integration is almost seamless.Now to answer your questions:-
1. will my members have to login a second time to use BuddyPress?
Is the login required by WordPress account? if yes, They will not need to login again.2. Will that they then have two accounts to deal with?
No, It is only one account.Give it a try, BuddyPress should be simple enough to use.
Best Regards
BNovember 2, 2018 at 10:22 pm #279782In reply to: Buddypress registration ignoring WP Mail SMTP
Paul Wong-Gibbs
KeymasterWP Mail SMTP seems to be a well-written plugin. I’ve taken a quick look at its code, and how it affects what WordPress does, and it looks like BuddyPress – in theory – should work with it. However, if you say it doesn’t, I don’t know why – you’d have to spend time debugging what is going on.
If you know some PHP and basic WordPress development, I can give you some pointers (e.g. start looking at the phpmailer_init hooks and how both plugins add to it).
November 2, 2018 at 10:05 pm #279779In reply to: Sendgrid and buddypress emails
Paul Wong-Gibbs
Keymaster@whoweez This old code sample does nothing much at all. I’m not sure what the intent was, this is basically debugging. To answer your specific question:
I thought “__return_false” on “bp_email_use_wp_mail” should prohibit any BP emails from being sent in the first place as the new class should handle the email sending process…?
If that filter returns true, then BuddyPress generates a plain text version of the email, and calls WordPress’
wp_mail()function. By default, this is false, but it returns true ifwp_mail_content_type()has been configured for HTML, or ifwp_mail()has been redeclared (it’s a pluggable function).That last bit is key. A lot of email plugins for WordPress re-declare
wp_mail(), so for BuddyPress to use those plugins, the default behaviour is to send that plain text version of that email.If
bp_email_use_wp_mailreturn false, then it creates aBP_Email_Deliveryobject, which is what that second filter is changing, which delivery class BuddyPress uses. Inside that class’bp_email()method is where you would create a custom integration with your Sendmail plugin (or however you approach that integration).November 2, 2018 at 5:20 pm #279773In reply to: Sendgrid and buddypress emails
whoweez
ParticipantHi @djpaul,
I’m playing around with the above code, but adding it to the functions.php file does not prohibit the buddypress email from sending!?
Furthermore, using sendgrid’s plugin and provided transactional template ID field does not solve anything as only the template without any buddypress/or wordpress related email content is sent – due to no relational placeholders set.
My aim is to use a custom transactional template at sendgrid for all wordpress and buddypress related content, but from some of your conversations on this I thought “__return_false” on “bp_email_use_wp_mail” should prohibit any BP emails from being sent in the first place as the new class should handle the email sending process…?
Could you perhaps give more guidelines as to why buddypress emails are still sending with this implemented:
add_filter( 'bp_email_use_wp_mail', '__return_false' ); add_filter( 'bp_send_email_delivery_class', function( $delivery_class ) { return 'Implementwpemailbp'; } ); class Implementwpemailbp implements BP_Email_Delivery{ public function bp_email(BP_Email $email){ //add_filter('wp_mail_content_type', 'set_html_content_type'); //wp_mail($to, $subject, $message, $headers = '', $attachments = array()) //remove_filter('wp_mail_content_type', 'set_html_content_type'); var_dump($email); } }Really appreciate your help 🙂
Kind Regards,
WzzNovember 2, 2018 at 1:39 pm #279772corsi159
ParticipantHello,
I configured the WP Mail SMTP plugin, and tested it properly with their embedded test-email. This plugin is linked to a Gmail account. Whenever I send a mail, I can see a trace of it in my Gmail “sent box”.
But when someone registes to my site (using buddypress), I can see that the registration mails are sent through the old mail config (via my web host), not through WP Mail SMTP.
Is there anything I have to do to “tell” Buddypress to use WP Mail SMTP?
I’m using :
– Buddypress 3.2.0
– WP Mail SMTP 1.3.3
– WordPress 4.9.8My website : http://www.merciki.be
Thanks in advance for your help!
November 1, 2018 at 9:29 am #279733In reply to: Hide some users from members directory
Prashant Singh
ParticipantHi,
Normally it should work in bp-custom.php but if you are not able to run the code you can use this plugin https://wordpress.org/plugins/bp-custom-functionalities/. Using this plugin you can easily exclude any user role(administrator. subscriber etc.) from members directory.
Thanks
November 1, 2018 at 9:11 am #279730In reply to: Remove the signup confirmation.
Prashant Singh
ParticipantOctober 31, 2018 at 8:16 pm #279717In reply to: Using First and Last names instead of Username
Prashant Singh
ParticipantHi,
You can use this function bp_get_displayed_user_fullname() to do so.
Also, please check these plugins: https://buddydev.com/plugins/bp-username-changer/ and https://wordpress.org/plugins/buddypress-usernames-only/
October 31, 2018 at 8:09 pm #279716In reply to: How to charge people for asking questions?
Prashant Singh
ParticipantHi,
Please go through this article https://theme-fusion.com/easily-add-paid-content-wordpress-site/
Thanks
October 30, 2018 at 7:29 pm #279701In reply to: Activation Email
Prashant Singh
ParticipantHi,
Please consult once with your hosting provider regarding the issue. Also, you can try setting up this plugin https://wordpress.org/plugins/wp-mail-smtp/ and then try sending emails.
Thanks
October 30, 2018 at 2:24 pm #279690In reply to: Change order of Group tabs
Prashant Singh
ParticipantOctober 30, 2018 at 3:12 am #279681In reply to: nowhere for user to enter bio
3diuk
ParticipantOk, I found the problem. Clicking on Author’s names was actually linking to:
renderwars.xyz/author/michael
when it should have been linking to:
renderwars.xyz/members/michael
for buddypress to work properly I had to create a child theme and then add a redirect rule in the child themes functions.php file.
For anyone else with the same problem who might not be too good at php etc, here’s the instructins I found to help me:
Creating a child theme:
https://codex.wordpress.org/Child_Themes
and then putting this code in the function.php:
add_filter( 'author_link', 'change_author_link', 10, 1 ); function change_author_link($link) { $username=get_the_author_meta('user_nicename'); $link = 'http://example.com/members/' . $username; return $link; }October 29, 2018 at 9:21 pm #279670Prashant Singh
ParticipantHi,
Have you assigned that template to register page in pages section? Just create a template like this https://www.cloudways.com/blog/creating-custom-page-template-in-wordpress/ and then try.
Thanks
October 29, 2018 at 6:36 pm #279658Prashant Singh
ParticipantWhat they said regarding this issue? Can you please test once by setting SMTP https://wordpress.org/plugins/wp-mail-smtp/
Thanks
October 29, 2018 at 6:27 pm #279657Prashant Singh
ParticipantBetter will be cloning it on any staging environment or localhost and then test here.
Please use https://wordpress.org/plugins/updraftplus/ plugin for backup and restore.
Thanks
October 28, 2018 at 5:37 pm #279580Prashant Singh
ParticipantHi,
Please contact your hosting providers once regarding the issue.
Also please try this plugin once https://wordpress.org/plugins/wp-better-emails/ and send a test mail to check if mail is working fine, then try registering on the site and check if received activation mail or not.
Thanks
October 28, 2018 at 9:41 am #279532In reply to: Can BuddyPress be used to create lists?
Prashant Singh
ParticipantOctober 27, 2018 at 8:42 pm #279467Lars Henriksen
ParticipantI use and recommend Buddypress Registrations options.
October 27, 2018 at 8:33 pm #279460In reply to: Community of book readers
Lars Henriksen
ParticipantI can recommend this review block for Gutenberg . It is not buddypress, though. But if you allow your WP users to be authors, then they can easily write reviews.
Cheers
-
AuthorSearch Results