Beiträge von CarstenHH

    Wie kann ich das Plugin so editieren, dass label und input jeweils eine Spalte einer Tabelle darstellen?

    Für Benutzernamen und E-Mail unter MTL habe ich es so gelöst. Danach sollen die Extrafelder von RPR die Tabelle weiterführen.
    Danke für die Hilfe

    <table class="form-table">
    <tr>
    <th> <span id="registerform<?php $template->the_instance(); ?>">
    <label for="user_login<?php $template->the_instance(); ?>">
    <?php _e( 'Username', 'theme-my-login' ) ?>
    </label>
    </span>
    <td>
    <span id="registerform<?php $template->the_instance(); ?>">
    <input type="text" name="user_login" id="user_login<?php $template->the_instance(); ?>" class="input" value="<?php $template->the_posted_value( 'user_login' ); ?>" size="20" tabindex="1" />
    </span></td>
    </tr>


    <span id="registerform<?php $template->the_instance(); ?>">
    </p>
    </span>

    <p>
    <tr>
    <th> <span id="registerform<?php $template->the_instance(); ?>">
    <label for="user_email<?php $template->the_instance(); ?>">
    <?php _e( 'E-mail', 'theme-my-login' ) ?>
    </label>
    </span>
    <td><span id="registerform<?php $template->the_instance(); ?>">
    <input type="text" name="user_email" id="user_email<?php $template->the_instance(); ?>" class="input" value="<?php $template->the_posted_value( 'user_email' ); ?>" size="20" tabindex="2"/>
    </p>
    </span>
    </table>