pcwd (@pcwd)

Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • @pcwd

    Participant

    Ok, thanks! Where I can edit the text: “Prove that you are a human being”?

    @pcwd

    Participant

    Theme my login does not allow embedding.
    As I wrote at the beginning of the post, I would like to customize the bbpress login page.
    Can you help me run that PHP code with Code Snippets?
    Thank you very much!

    @pcwd

    Participant

    I saw this:

    10 Best Custom Login Page Plugins for WordPress 2022

    but there is no option to embed on a page on my site.

    @pcwd

    Participant
    <?php
    if ( ! is_user_logged_in() ) { // Display WordPress login form:
        $args = array(
            'redirect' => admin_url(), 
            'form_id' => 'loginform-custom',
            'label_username' => __( 'Username custom text' ),
            'label_password' => __( 'Password custom text' ),
            'label_remember' => __( 'Remember Me custom text' ),
            'label_log_in' => __( 'Log In custom text' ),
            'remember' => true
        );
        wp_login_form( $args );
    } else { // If logged in:
        wp_loginout( home_url() ); // Display "Log Out" link.
        echo " | ";
        wp_register('', ''); // Display "Site Admin" link.
    }
    ?>

    I entered that code with the Code Snippets Plugin but it didn’t work 🙁

    @pcwd

    Participant

    Hi Robin,
    thanks for your reply.

    I entered that code with the Code Snippets Plugin but it didn’t work. Why?

    @pcwd

    Participant

    Can you help me please?

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