• Resolved miguel1876

    (@miguel1876)


    Hi there.

    Love the Plugin. Is there a way to add custom content below the registration form? I saw this topic posted before here which works well but I need to add the content just to the registration form (not the login form).

    I hope you can help.

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author xootix

    (@xootix)

    Hello,

    Please try this snippet

    add_action( 'xoo_el_after_form', function( $form ){
    if( $form !== 'register' ) return;
    ?>
    <p>Hello!</p>
    <?php
    } );
    Thread Starter miguel1876

    (@miguel1876)

    That worked perfectly! Thank you so very much!

    Plugin Author xootix

    (@xootix)

    You’re welcome! I’m glad you like the plugin. I would appreciate it if you could rate it here

    Thread Starter miguel1876

    (@miguel1876)

    You got it! Done!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Message at the bottom of the registration form’ is closed to new replies.