I use a child Theme of Reign Theme. Now, I don’t want to use any additional plugins because I already have 36 plugins on my website.
The text of Gravatar calls, has hard-coded links as seen here:
<p class="bp-feedback info">
<span class="bp-icon" aria-hidden="true"></span>
<span class="bp-help-text">
<?php
/* Translators: %s is used to output the link to the Gravatar site */
printf( esc_html__( 'Your profile photo will be used on your profile and throughout the site. If there is a %s associated with your account email we will use that, or you can upload an image from your computer.', 'buddypress' ),
/* Translators: Url to the Gravatar site, you can use the one for your country eg: https://fr.gravatar.com for French translation */
'<a href="' . esc_url( __( 'https://gravatar.com', 'buddypress' ) ) . '">Gravatar</a>'
); ?>
</span>
</p>
I will like to edit all these texts directly and remove the Gravatar link without breaking things.
I am also looking for a way to remove that whole text completely without plugin. I want to do it by using Code Snippets. If anyone has a Code Snippet that I can insert into my functions.php, I will be most grateful.
@vapvarun
I have the same problem. I want to include User Password inside my Welcome Message.
You said “There are a couple of 3rd party plugin which you can use to modify the registration flow, or you can customize the BP registration form and hook up a new welcome email”
But when we don’t know PHP, how then can we solve this problem?
Please, can you suggest a more beginner friendly way to solve this problem?