Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
In reply to: Customizing the bbPress login page
Ok, thanks! Where I can edit the text: “Prove that you are a human being”?
In reply to: Customizing the bbPress login pageTheme 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!In reply to: Customizing the bbPress login pageI saw this:
10 Best Custom Login Page Plugins for WordPress 2022
but there is no option to embed on a page on my site.
In reply to: Customizing the bbPress login page<?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 🙁
In reply to: Customizing the bbPress login pageHi Robin,
thanks for your reply.I entered that code with the Code Snippets Plugin but it didn’t work. Why?
In reply to: Customizing the bbPress login pageCan you help me please?
Viewing 6 replies - 1 through 6 (of 6 total)