• Resolved Cadu de Castro Alves

    (@cadudecastroalves)


    Hi,

    I’m using Super Socializer plugin and I need to add Steam Login button to login and registration pages. Which hook can I use to do so?

    All the best!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello Cadu de Castro Alves,

    You can use the provided action hook for login form: user_registration_login_form_end. E.g.

    function ur_add_stream_login() {
         // Steam login button
    } 
    add_action( 'user_registration_login_form_end', 'ur_add_stream_login' );

    And for registrtion form: user_registration_form_registration:

    function ur_add_stream_login_after_reg() {
         // Steam login button
    }
    add_action( 'user_registration_form_registration', 'ur_add_stream_login_after_reg' );

    Hope this helps!

    Thread Starter Cadu de Castro Alves

    (@cadudecastroalves)

    Hi!

    I’ve found that I can copy form-registration.php and form-login.php files into my theme folder as well.

    Thanks for your response!

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

The topic ‘Steam Login’ is closed to new replies.