aviplugins.com
Forum Replies Created
-
For that you have to change the CSS.
If you want to change the structure of the form then you can do that on the login_afo_widget.php page.Forum: Plugins
In reply to: [Facebook Login Widget] Notice Messages on ActivationSorry for the late reply. Its great that you got the solution by yourself.
otherwise in your wp-config.php file change
define(‘WP_DEBUG’, true);
to
define(‘WP_DEBUG’, false);and that will also solve your problem.
Forum: Plugins
In reply to: [Facebook Login Widget] App setup errorIn the Facebook APP page check for 2 things
1. In the Dascboard tab check if there is a small Green Ball on right side of the APP name. The Green Ball means your APP is in live mode. If not in the live mode the APP will not work
2. In the settings tab enter Site URL as your site url for example https://www.example.com/
Forum: Plugins
In reply to: [Facebook Login Widget] App setup errorYou must use your site url, the url where you are installing the plugin in the Facebook API settings. Otherwise the plugin will not work.
Please click here for a more detail API setup instruction.
Forum: Plugins
In reply to: [Login Widget With Shortcode] localizationThe plugin is multilingual now.
If you want to translate the plugin in french please translate the sample .PO file and mail me the the file at [email protected] and I will include that in the language file. Sample .PO file can be downloaded from here
Forum: Plugins
In reply to: [Login Widget With Shortcode] Autofill and/or hide 'username' field?Sorry. I don’t understood what you actually want here.
If you want help with the pro version of the plugin please mail me at [email protected]
Actually the plugin do not store the name of the user in the database. As this is a login plugin only the information required for the plugin to work properly is stored in the database.
To display the first name / last name of the user the code needs some modifications.
Forum: Plugins
In reply to: [Facebook Login Widget] Add a register optionYes. the code for the PRO version is a bit different.
Forum: Plugins
In reply to: [Facebook Login Widget] Add a register optionIn the plugin directory open the file named “login_afo_widget.php”
Go to line number 53 you can see the form structure like this.<ul class="login_wid"> <li>Username</li> <li><input type="text" name="user_username" required="required"/></li> <li>Password</li> <li><input type="password" name="user_password" required="required"/></li> <li><input name="login" type="submit" value="Login" /></li> <li><font size="+1" style="vertical-align:top;">Login with </font> <a href="javascript:void(0)" onClick="FBLogin();"><img src="<?php echo plugins_url( 'facebook.png' , __FILE__ );?>" alt="Fb Connect" title="Login with facebook" /></a></li> </ul>
Here you can add the new user registration link. you can replace the code by this.
<ul class="login_wid"> <li>Username</li> <li><input type="text" name="user_username" required="required"/></li> <li>Password</li> <li><input type="password" name="user_password" required="required"/></li> <li><input name="login" type="submit" value="Login" /></li> <li><font size="+1" style="vertical-align:top;">Login with </font> <a href="javascript:void(0)" onClick="FBLogin();"><img src="<?php echo plugins_url( 'facebook.png' , __FILE__ );?>" alt="Fb Connect" title="Login with facebook" /></a></li> <li class="register"><a href="<?php echo wp_registration_url(); ?>" title="Register">Register</a></li> </ul>
Forum: Plugins
In reply to: [Facebook Login Widget] Doesn't workYou might have other Facebook Login related plugins installed in your site. Please deactivate them and then try to install this plugin.
You should not face the error screen. And after this plugin is activated then you can reactivate your other facebook related plugins.
Forum: Plugins
In reply to: [Custom Post Type Attachment] Upload form in front end viewPlease describe what exactly you want do display in front end?
Because i don’t get what you mean here.Forum: Plugins
In reply to: [Login Widget With Shortcode] Forgot passwordIn the plugin directory open the file named “login_afo_widget.php”
Go to line number 69
Here you can see the form structure like this.<ul class="login_wid"> <li>Username</li> <li><input type="text" name="user_username" required="required"/></li> <li>Password</li> <li><input type="password" name="user_password" required="required"/></li> <li><input name="login" type="submit" value="Login" /></li> </ul>
Here add your link for “forgot password”. Just replace the code with the code provided below.
<ul class="login_wid"> <li>Username</li> <li><input type="text" name="user_username" required="required"/></li> <li>Password</li> <li><input type="password" name="user_password" required="required"/></li> <li><input name="login" type="submit" value="Login" /></li> <li><a href="<?php echo wp_lostpassword_url(); ?>" title="Lost Password">Forgot Password?</a></li> </ul>
Forum: Plugins
In reply to: [Facebook Login Widget] css urlPlease download the updated version, the css file path is corrected.
And as this plugin is developed as a login plugin and not as a registration plugin. The data in the user table is populated with the ones that are needed for this plugin only.
Forum: Plugins
In reply to: [Login Widget With Shortcode] Styling the login elementsIn the plugin directory open the page “login_afo_widget.php”
Go to line number 69
Here you can see the form structure like this.<ul style="list-style-type:none;"> <li>Username</li> <li><input type="text" name="user_username" required="required"/></li> <li>Password</li> <li><input type="password" name="user_password" required="required"/></li> <li> </li> <li><input name="login" type="submit" value="Login" /></li> </ul>
Add your styling here. ??