[Plugin: WP Mail SMTP] Enhancements
-
Hi Callum:
here are a few comments to improve your script.1. Password Field should be password not text,
so i changed,<td><input name="smtp_pass" type="text" id="smtp_pass" value="<?php print(get_option('smtp_pass')); ?>" size="40" class="code" /></td>for
<td><input name="smtp_pass" type="password" id="smtp_pass" value="<?php print(get_option('smtp_pass')); ?>" size="40" class="code" /></td>2. I think “Email” is a bit general for the menu item in Options,
i think it would be better to have something like “SMTP Email” if “WP SMTP Email” is too much.
So i changed,add_options_page(__('Advanced Email Options', 'wp_mail_smtp'),__('Email', 'wp_mail_smtp'),'manage_options',__FILE__,'wp_mail_smtp_options_page');for
add_options_page(__('Advanced Email Options', 'wp_mail_smtp'),__('SMTP Email', 'wp_mail_smtp'),'manage_options',__FILE__,'wp_mail_smtp_options_page');thanks for your work,
just giving back a little bit.
– wjm
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘[Plugin: WP Mail SMTP] Enhancements’ is closed to new replies.