jamierc
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Sidebar Login] Length of the Username and Password fields?I managed to work this out. Edit the plugin code – look for the lines below, and add the size=”10″ (in bold below), after the class=”mid”. You’ll need to add it twice. Obviously change the “10” to the size you want the fields to be.
// login form
echo ‘<form method=”post” action=”‘.wp_sidebarlogin_current_url().'”>’;
?>
<p><label for=”user_login”><?php echo $theusername; ?></label>
<input name=”log” value=”<?php echo attribute_escape(stripslashes($_POST[‘log’])); ?>” class=”mid” size=”10″ id=”user_login” type=”text” /></p>
<p><label for=”user_pass”><?php echo $thepassword; ?></label>
<input name=”pwd” class=”mid” size=”10″ id=”user_pass” type=”password” /></p>Forum: Plugins
In reply to: [Plugin: Sidebar Login] size of username and password text fieldsI managed to work this out. Edit the plugin code – look for the lines below, and add the size=”10″ (in bold below), after the class=”mid”. You’ll need to add it twice. Obviously change the “10” to the size you want the fields to be.
// login form
echo ‘<form method=”post” action=”‘.wp_sidebarlogin_current_url().'”>’;
?>
<p><label for=”user_login”><?php echo $theusername; ?></label>
<input name=”log” value=”<?php echo attribute_escape(stripslashes($_POST[‘log’])); ?>” class=”mid” size=”10″ id=”user_login” type=”text” /></p>
<p><label for=”user_pass”><?php echo $thepassword; ?></label>
<input name=”pwd” class=”mid” size=”10″ id=”user_pass” type=”password” /></p>Forum: Plugins
In reply to: [Plugin: Sidebar Login] Edit Form WidthI managed to work this out. Edit the plugin code – look for the lines below, and add the size=”10″ (in bold below), after the class=”mid”. You’ll need to add it twice. Obviously change the “10” to the size you want the fields to be.
// login form
echo ‘<form method=”post” action=”‘.wp_sidebarlogin_current_url().'”>’;
?>
<p><label for=”user_login”><?php echo $theusername; ?></label><input name=”log” value=”<?php echo attribute_escape(stripslashes($_POST[‘log’])); ?>” class=”mid” size=”10″ id=”user_login” type=”text” /></p>
<p><label for=”user_pass”><?php echo $thepassword; ?></label><input name=”pwd” class=”mid” size=”10″ id=”user_pass” type=”password” /></p>Forum: Plugins
In reply to: [Plugin: Sidebar Login] Edit Form WidthI managed to work this out. Edit the plugin code – look for the lines below, and add the size=”10″ (in bold below), after the class=”mid”. You’ll need to add it twice. Obviously change the “10” to the size you want the fields to be.
// login form
echo ‘<form method=”post” action=”‘.wp_sidebarlogin_current_url().'”>’;
?>
<p><label for=”user_login”><?php echo $theusername; ?></label>
<input name=”log” value=”<?php echo attribute_escape(stripslashes($_POST[‘log’])); ?>” class=”mid” size=”10″ id=”user_login” type=”text” /></p>
<p><label for=”user_pass”><?php echo $thepassword; ?></label>
<input name=”pwd” class=”mid” size=”10″ id=”user_pass” type=”password” /></p>Forum: Plugins
In reply to: [Plugin: Sidebar Login] Edit Form WidthDid you ever find out how to do this? I want to do the same thing.
Thanks
Jamie
Forum: Plugins
In reply to: custom subpage per registered userdoes this reply help?
Forum: Plugins
In reply to: How to give each registered user a custom homepage?thanks <resolved>
Forum: Plugins
In reply to: custom subpage per registered userDid you ever manage to resolve this? I am trying to do the same thing.