• Resolved calle81

    (@calle81)


    I wanted to know how I can insert text above the profile fields of all users. Is there any hook or filter to use?

    This is the image (https://ibb.co/DRBZMzg) of the position where I would like to insert the text.

    Sorry for my English.

    Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @calle81

    You can try this code to insert content before the form fields in the Profile form:

    add_action("um_before_profile_fields","um_custom_show_content", 10, 1 );
    function um_custom_show_content( $args ){
        echo "test content";
    } 

    Regards,

    Thread Starter calle81

    (@calle81)

    @champsupertramp thanks ??.

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @calle81

    Thanks for letting us know. I am marking this thread as resolved now.

    Regards,

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to insert text above the profile fields of all users.’ is closed to new replies.