Muhammad Arslan
Forum Replies Created
-
Hey @smiller24
There might be some problem making element in your environment which could have caused the background from not to delete properly.
Here is how the default behaviour works: [Helping Screencast]
Do let me know if you need any assistance.
Have a nice day!
Hey @smiller24
This is not the default behaviour of LoginPress. However if you have resolve the issue that is good news.
If you need any assistance do let us know.
Have a nice day!
Hey @smiller24
This is the default behaviour of LoginPress and there might something conflicting with LoginPress.
If after uninstalling the image is still in place, then it could one of two things, either the image is set from somewhere else or it is being served from server cache.
However, kindly contact us with the log file of LoginPress at our support forum so we can debug and fix this issue for you.
P.S: You can find the log file from LoginPress -> help.
Looking forward.
Hey @alexandra2309
Yes, You can use LoginPress with BBPress, we also have written an article on the compatibility of BBPress and LoginPress: https://loginpress.pro/doc/compatibility-of-loginpress-and-bbpress/
LoginPress utilizes and uses the default login page of WordPress, i.e. /wp-login.php so it cannot be used on individual pages.
Have a nice day!
Hey @shakhbanov
This is not the default behavior of LoginPress.
I tried to register an account on the register page and got the error as well. Here is a video of the process: Screencast
Given the information, It looks like some internal issue in your environment.
Kindly contact us on our support forum regarding this issue so we can debug and fix this for you.
Looking forward.
Hey @yaelduckwen and @ammattrienpont
We have added the this feature in our latest release, kindly update and enjoy.
Have a nice day!
Hey @shirtguy72
Thank you for providing the in depth explaining of the issue.
Kindly copy and paste the following CSS in your child theme’s CSS file.
.relpost-custom-block-single{ margin-bottom: 10px !important; }
Here is the look afterwards: https://d.pr/i/znDTMR
If you need any assistance do let me know.
Have a nice day.
Forum: Plugins
In reply to: [Login Logout Menu] Change display username to display first nameHey @notthisagain
Kindly replace the following piece of code with the old one.
This following code will look for the first name and will show it, It will also look for the last name as well and if found it will attach that as well.
If first and last name are not found, then it will show the display name:
/** * Filter to Change the user profile link text * * @param [String] $user_name The name of the user who is logged in * * @return [string] First and last name accordingly. */ add_filter( 'login_logout_menu_username', 'custom_loginpress_login_logout_menu_username' ); function custom_loginpress_login_logout_menu_username( $user_name ) { $user_id = null !== wp_get_current_user() && ! empty( wp_get_current_user() ) ? wp_get_current_user()->ID : ''; if ( empty( $user_id ) ) { return $user_name; } $user_info = $user_id ? new WP_User( $user_id ) : wp_get_current_user(); if ( $user_info->first_name ) { if ( $user_info->last_name ) { return $user_info->first_name . ' ' . $user_info->last_name; } return $user_info->first_name; } return $user_info->display_name; }
Have a nice day!
Forum: Plugins
In reply to: [Login Logout Menu] Change display username to display first nameHey,
We have created a filter hook for this. If you want to change the username which is showing in the navigation.
You can modify the given code accordingly.
Helping Documentation: https://loginpress.pro/doc/login-logout-menu-filters/
/** * Filter to Change the user profile link text * * @param [String] $user_name The name of the user who is logged in * * @return [string] Custom String and the username */ add_filter( 'login_logout_menu_username', 'custom_loginpress_login_logout_menu_username' ); function custom_loginpress_login_logout_menu_username( $user_name ) { $current_user = null !== wp_get_current_user() && ! empty( wp_get_current_user() ) ? wp_get_current_user()->display_name : $user_name; return $current_user; }
Kindly copy and paste the following in your theme’s functions.php file.
This code will modify the username to display name.
Have a nice day!
Forum: Plugins
In reply to: [LoginPress | wp-login Custom Login Page Customizer] Change text buttonHey @olivier-behot
If you want the register button on the register page, that is not possible with a designated hook.
You can use “gettext” hook though.
add_filter( 'gettext', 'loginpress_change_keyword' ); /** * Change Register link text on the login form * * @param $text string * @return $text string */ function loginpress_change_keyword( $text ) { $text = str_ireplace( 'Register', 'Sign Up Now', $text ); return $text; }
Kindly copy and paste the following in the functions.php file of your theme.
Here is the resulted output: Helping screencast
Have a nice day
Forum: Plugins
In reply to: [Custom Login Page Customizer] Duplicate Login Customizer pagesHey @nealumphred
This is not a default behaviour of Login Customizer, There must be some issue within the environment, kindly contact us on our support forum so we can debug and resolve this issue for you. Sounds good?
P.S: You can delete the Login Customizer pages.
Looking Forward.
Forum: Plugins
In reply to: [Custom Login Page Customizer] login/registration formHey @heimoviktor
I guess you are trying to use different height and width of login form for mobile and tablet devices.
You would need custom CSS for this purpose to achieve.
Luckily, Login Customizer supports custom CSS, You can find it from Login Customizer -> Customizer -> Custom CSS/JS -> CSS.
This only runs on login pages i.e. Login, Lost Password, Register..
If you need any assistance do let me know.
Have a nice day!
Hey @amnwtritaly
This is not the default behavior of LoginPress and there must be some conflict.
Kindly contact us on our support form with the log file which can be found from LoginPress -> Help
We will try our best to resolve your issue.
Have a good day!
Hey @amnwtritaly
Thank you for contacting us.
The form transparency is working fine in your environment, However, you have selected a precise color as the background color instead of an image that is reflecting to look like the form transparency is not working.
Here i have made a video screencast for you: https://d.pr/v/1UGxk9
Have a nice day!