BuddyDev

Search

[Resolved] Changing the generic “Registering for this site is easy” tag line.

  • Participant
    Level: Yogi
    Posts: 1112
    calu on #53202

    Hi there, some years back I changed the generic “Registering for this site is easy” tag line from the registration page to something else.

    Now I want to change the text again, but can’t remember where I did that.

    According to this thread it should be found at wp-content/themes/child-theme/buddypress/register.php/

    https://buddypress.org/support/topic/changing-the-generic-registering-for-this-site-is-easy-tag-line/

    but I havn’t override my members.php file and it is not in the original members.php file or bp-custom.php either.

    The question is, where I make the change?

    Best
    Carsten

  • Keymaster
    (BuddyDev Team)
    Posts: 24534
    Brajesh Singh on #53207

    Hi Carsten,
    Welcome back.

    That is applicable to BuddyPress classic template pack.

    Are you using Nouveau or classic?

    Regards
    Brajesh

  • Participant
    Level: Yogi
    Posts: 1112
    calu on #53218

    Hi Brajesh, thanks for the greeting

    I’m using Nouveau. I have changed theme and deactivated bp-custom.php to rule out any code or override, but with same result.

    Regards
    Carsten

  • Keymaster
    (BuddyDev Team)
    Posts: 24534
    Brajesh Singh on #53223

    Hi Carsten,
    Thank you for the details.

    The Nouveau doe snot keep it in the templates.

    1. If you want to disable/remove it, You can use the following code

    https://buddydev.com/support/forums/topic/hide-register-text-in-bp-regsiter-form/#post-32463

    2. Or if you want to change it, You can use this code instead.

    
    add_filter( 'bp_nouveau_feedback_messages', function ( $args ) {
    
    	if ( ! isset( $args['request-details'] ) || ! is_array( $args['request-details'] ) ) {
    		return $args;
    	}
    
    	$args['request-details']['message'] = 'Thank you for your interest in registering...';// please change it.
    
    	return $args;
    } );
    
    

    Please feel free to customize as you need.
    Hope that helps.

    Regards
    Brajesh

  • Participant
    Level: Yogi
    Posts: 1112
    calu on #53224

    Hi Brajesh, thanks for the link and the snippet.

    You wrote that the Nouveau does not keep it in the templates. Does this mean that my altered text is a reminiscence from Classic when I used that, so I can find the text in a Classic template?

    Regards
    Carsten

  • Keymaster
    (BuddyDev Team)
    Posts: 24534
    Brajesh Singh on #53226

    Hi,
    If you did template override, It should be in buddypress/members/register.php

    If you used BP Nouveau, It should be in your theme’s functions.php or bp-custom.php in wp-content/plugins directory.

    Hope you are able to locate it.

    Regards
    Brajesh

You must be logged in to reply to this topic.

This topic is: resolved