Edit log in page

Hi,

I would like to edit the sign up and log in page and add another link into this page however hive press is not letting me edit this page, is there a way around this?

Thank you

Hi,

Editing this page will require a custom implementation. For example, using this PHP snippet, you can add first and last name fields to a user registration form Add first and last name fields to the user registration form #hivepress #users · GitHub

​I hope this is helpful to you.

Thank you for your response. I don’t think I explained myself correctly, sorry. In the photo I have attached, I would like to add a link to a google form at the bottom of the sign up page, is this possible?

Hi use this. Insert your link. change word from small to large if needed on both:

add_filter(
    'hivepress/v1/forms/user_login',
    function( $form ) {
        $form['footer'] .= '<br><small><a href="insert https link here">Interested? Contact us!</a></small>';
        return $form;
    },
    1000
);


1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.