Fida Al Hasan
Forum Replies Created
-
Forum: Plugins
In reply to: [SB Login] Change Tabs Register to LoginHello,
You have to customize code in two place.
First go to sb-login/sb-login.php
Find this code:
nd_login_load_template( 'tabs.php' ); nd_login_load_template( 'login-form.php' ); if (get_option('users_can_register')) nd_login_load_template( 'register-form.php' ); nd_login_load_template( 'lost-password-form.php' );
Replace it with this:
nd_login_load_template( 'tabs.php' ); if (get_option('users_can_register')) nd_login_load_template( 'register-form.php' ); nd_login_load_template( 'login-form.php' ); nd_login_load_template( 'lost-password-form.php' );
Now go to sb-login/template/tabs.php
Find this:
<ul class="nd_tabs"> <li class="active"><a href="#nd_login_form"><?php _e('Login', 'ninety'); ?></a></li> <?php if (get_option('users_can_register')) : ?><li><a href="#nd_register_form"><?php _e('Register', 'ninety'); ?></a></li><?php endif; ?> </ul>
Replace it with this:
<ul class="nd_tabs"> <?php if (get_option('users_can_register')) : ?><li class="active"><a href="#nd_register_form"><?php _e('Register', 'ninety'); ?></a></li><?php endif; ?> <li><a href="#nd_login_form"><?php _e('Login', 'ninety'); ?></a></li> </ul>
Forum: Plugins
In reply to: [SB Login] Date of last loginHello,
Please think about this: Date of last loging. Not date of last logout. If you login today thats mean your last login is today. What you wanted is this date of last logout.Forum: Plugins
In reply to: [SB Login] Customize Welcome Email Sent to UserYou can use SB Welcome Email Editor plugin for that.
Forum: Plugins
In reply to: [SB Login] SB Login needs more developmentPlease read the plugin’s description. It is only a Login/Registration plugin. It don’t control how your registration email go to new users. WordPress default registration email are sent when someone try to register. You have to use another plugin/code to change the wordpress default registration email. You can’t blame this plugin for that.
ok, I am checking the second problem.
Forum: Plugins
In reply to: [SB Login] There is no "User Registration" linkHello,
Go to General settings under Settings of WordPress Dashboard than enable anyone can register. Now registration form will be showed.
Forum: Plugins
In reply to: [SB Login] Remove Since last logging in there have been …Yes possible. Go to sb-login/template/logged-in.php
Than find this code and remove it
echo '<p>'; echo _n('Since last logging in there has been ', 'Since last logging in there have been ', $posts,'ninety'); echo '<span class="count">'.$posts.'</span>'; echo _n('new post and ', 'new posts and ', $posts,'ninety'); echo '<span class="count">'.$comments.'</span>'; echo _n('new comment', 'new comments', $comments, 'ninety');
Forum: Reviews
In reply to: [SB Login] ??? ???? ??? ?????? ??OK . Thanks for your 5 star review
Forum: Plugins
In reply to: [SB Login] Role selection optionSorry, no. I don’t know is there any kind of plugin having this feature or not. Only admin can change role of a user. It is default system
Forum: Plugins
In reply to: [SB Login] shortcode of profile page ?No, sorry. It is only a Login/Registration plugin.
Forum: Plugins
In reply to: [SB Login] only have "log in" Tab, no "register" tab found!!!If you don’t check anyone can register the registration tab won’t visible. It will only visible when you will allow registration on your site.
Forum: Plugins
In reply to: [SB Login] Registration Error: No answer to the Math Question.Try again now. I checked it again. Now captcha are working. Maybe Captcha Plugin team fixed it. Reinstall the captcha plugin
Forum: Plugins
In reply to: [SB Login] Translation issuesHello dimarkus,
Thanks for your contribution. In version 2.0 I changed some text in the plugin but forgot to change them in the .po file. I will fix it in next version.Forum: Plugins
In reply to: [SB Login] problem with the width of pluginYou have to change it manually. Go to sb-login/css/login.css
Find this lineform.nd_form, div.nd_logged_in
Here just put your desired css width.Forum: Plugins
In reply to: [SB Login] Are you for hire ?For Captcha use this plugin https://www.ads-software.com/plugins/captcha/
Forum: Plugins
In reply to: [SB Login] Registration Error: No answer to the Math Question.Hello,
This problem is Captcha Plugin’s problem. We just integrated Captcha plugin to our SB Login plugin. We just upgraded Captcha Plugin in the latest version and seeing this same problem too. The latest version have bugs. Hope they will fix it asap.
To solve this problem use this old version Version 3.9.2
If you can please open a ticket in Cpatcha Plugin’s support forum for this problem.