• Resolved mheffo

    (@mheffo)


    Hi there,

    I just started using this plugin and it’s a great plugin. Thanks.

    I have 2 questions on the Registration Management Tool html form. Is it possible to change the text/link (the ‘Already Registered Text’) that appears beside the register form button to be an actual button by tweaking the form’s html code/js? And is it possible to pre populate the form with the WP logged in user’s email address like the registration form does by default?

    Many thanks,

    Mark

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author roundupwp

    (@roundupwp)

    Sure! Try adding this to the “Custom CSS” area on the “Form” tab to make the link a button:

    .rtec-already-registered-reveal {
      display: inline-block;
      background: #555;
      border-radius: 5px;
      padding: 5px 10px;
      vertical-align: top;
    }
    .rtec-already-registered-reveal a {
      color: #fff;
    }

    Use this JS to prepopulate the email field:

    if (jQuery('#rtec-visitor_email').length && jQuery('#rtec_email').length) {
        jQuery('#rtec-visitor_email').val(jQuery('#rtec_email').val());
    }

    Let me know if you have more questions!

    – Craig

    Thread Starter mheffo

    (@mheffo)

    This is awesome. Worked great. Thanks Craig.

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

The topic ‘Registration Management Tool tweaks’ is closed to new replies.