arvinsd
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: don’t know where to ask/post this…yea, linked to the form.
i did that to protect against spam! it has the number check thing…
i’m using the dd form mailer plugin which has uptil now been pretty good.in any case could a moderator please take that address down? i can’t edit the thread any more…
Forum: Themes and Templates
In reply to: will pay $ for a custom themethanks for your message
so is this thread going to be closed?
Forum: Themes and Templates
In reply to: will pay $ for a custom themei had asked for prospective parties to reply to this post.
if you aren’t comfortable with that then please use the mailer here:
[address removed on request – mod]Forum: Plugins
In reply to: custom user registration fields, help?last bump – please guys!
Forum: Plugins
In reply to: Google Gears – A Google app for offline browsingwould be awesome to be able to work on WP offline
Forum: Plugins
In reply to: Member list plugin?mmcginnis,
did u ever find a solution?
Arv
Forum: Plugins
In reply to: Change the login from user name to emailim also interested in this
Forum: Plugins
In reply to: custom user registration fields, help?I have this, but can’t get it to work.
from: https://files.viper007bond.com/wordpress/loginformexample.phps
<?php /*
Plugin Name: Example Login Form Plugin
Description: A plugin that shows off some of the new features of the login form.
Author: Viper007Bond
Author URI: https://www.viper007bond.com/*/
add_action(‘register_form’, ‘vipers_exloginform_form’);
add_action(‘register_post’, ‘vipers_exloginform_post’);function vipers_exloginform_form() {
echo ‘ <p><label>What is your favorite color?
<input type=”text” name=”color” id=”color” size=”25″ class=”input” value=”‘ . wp_specialchars(stripslashes($_POST[‘color’]), 1) . ‘” /></label></p>’ . “\n”;
}function vipers_exloginform_post() {
global $errors;if ( empty( $_POST[‘color’] ) ) $errors[‘color’] = ‘ERROR: You need to fill in the color field!’;
else {
// Do something with the color here, like save it to the database
}
}?>
Forum: Plugins
In reply to: custom user registration fields, help?Thanks for that, but I haven’t really gotten anywhere.
The userextra plugin doesn’t do the business – I want to add fields to the registration.I think it should be quite simple – anyone? Should I hack wp_login, e.g. add something like
<label><?php _e(‘Music Preference:’) ?>
<input type=”text” name=”user_music” id=”user_music” class=”input” value=”<?php echo attribute_escape(stripslashes($user_login)); ?>” size=”20″ tabindex=”10″ /></label>
</p>How can I get drop-downs, checkboxes etc?
And how can I get these added details to come up on the “users” tab?
Forum: Fixing WordPress
In reply to: Registration on a page?im interested in this too
Forum: Plugins
In reply to: plugin for a guestlist?last bump. cmon guys!
Forum: Plugins
In reply to: plugin for a guestlist?Hi, thanks for that, had come accross them earlier but neither do the needful (or I’m not savvy enough to modify them to do so).
Thanks though.
Arv