Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • 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>

    Thread Starter jamierc

    (@jamierc)

    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>

    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>

    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>

    Did you ever find out how to do this? I want to do the same thing.

    Thanks

    Jamie

    Thread Starter jamierc

    (@jamierc)

    thanks <resolved>

    Did you ever manage to resolve this? I am trying to do the same thing.

Viewing 8 replies - 1 through 8 (of 8 total)