• Hello,

    its possible can Theme the subscription form? (Hook in functions.php or theme-file in my WP-Theme) I want a placeholder and correcture HTML Output.

    Current Plugin Code

    $email_html = '<div class="es-field-wrap"><label>' . __( 'Email', 'email-subscribers' ) . '*' . '<br/><input class="es_required_field es_txt_email" type="email" name="email" value="" placeholder="' . $email_label . '" required/></label></div>';

    Better solution and correct HTML

    $email_html = '<div class="es-field-wrap"><label for="email">' . __( 'Email', 'email-subscribers' ) . '*' . '</label><input class="es_required_field es_txt_email" type="email" name="email" value="" placeholder="' . $email_label . '" required/></div>';

    Thanks.

    • This topic was modified 5 years, 10 months ago by berylune.
  • The topic ‘Theming Subscription Form’ is closed to new replies.