Skip to:
Content
Pages
Categories
Search
Top
Bottom

Add additional text in Register form


  • axsubram1
    Participant

    @axsubram1

    Hi,

    I am trying to add a message in my register page https://www.nalsol.in/register/ to convey additional information to my users.

    I am unable to find the way to edit this page. Edit by backend/frontend shows blank page and “Edit with WPBakery Page Builder” does not load at all.

    How do I add a message on top of this page for my users?

    Buddypress version Version 10.3.0

    Thanks & Regards

    Anand

Viewing 2 replies - 1 through 2 (of 2 total)

  • raviousprime
    Participant

    @raviousprime

    Hello,

    Please try the following code:

    
    add_action( 'bp_before_register_page', function () {
    	esc_html_e( 'Before register page content goes here.' );
    } );
    

    It will display the content before register form. You can place this code in your active theme ‘functions.php’ file or ‘bp-custom.php’ file.

    Regards
    Ravi


    nobody
    Participant

    @iduy

    It is useful for me, thank you @raviousprime

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.
Skip to toolbar