mpvanwinkle77
Forum Replies Created
-
Thanks Rhama, I’ll add those to the feature request list.
At this time, this plugin cannot be used to replace the default multisite registration. It can be used to add registration forms to individual sites on a multisite installation.
As for adding additional fields, there are hooks for this. See this page:
https://www.mikevanwinkle.com/wordpress/registration-forms-whats-new-in-1-5/Just create a function for the input field:
add_filter('simplr_add_form_fields','my_custom_reg_field'); function my_custom_reg_field($form) { $form .= '<div>'; $form .= '<label for="nickname">Nickname:</label>'; $form .= '<input type="text" name="nickname" value="'.$_POST['nickname'] .'"/><br/>'; $form .= '</div>'; return $form; }
Then add a function for saving the field:
add_action('simplr_profile_save_meta','save_nickname'); function save_nickname($user_id) { if(isset($_POST['nickname'])) { add_user_meta($user_id, 'nickname', $_POST['nickname']); } return $user_id; }
In the latest version there are filters for each section.
Care to be more specific about why you don’t like the “turn on” option. Here’s my thinking. The goal of my plugin is to provide multiple registration forms to accommodate need. If the hook is there without an easy way for the user to turn it on or off, then all their registration forms will output all the fields. What’s the harm in letting them turn off extra fields when they want to without having to “remove_hook”.
Forum: Plugins
In reply to: [Simplr Registration Form Plus+] [Plugin: Simplr User Registration Form] BugsUndefined Index is a harmless error (though one I will clean up). So the email issue should not have anything to with that. It’s more likely something with your MAMP setup. Let me give it a try on my end with the same setup and get back to you.
Anyone else try Abdul_ibad’s solution yet? I should work though I haven’t spent much time testing it. I will incorporate this into future versions. I’ll add this as a setting also so you’ll have to “turn it on” first.
There are instructions on the settings page for how to use the plugin. If those are not working please post the specific issue you are having. Does anything show up on the page where you put the shortcode? if so what?
Thanks, I’ll give it look, perhaps make it a permanent part of the plugin. I think it’s a good addition because I have not intention of building a UI for adding registration fields and Register Plus simply works on the default registration … perhaps there some synergy.
FYI, this should be fixed in the latest update.
MikeLooks good. did you modify the source at all. can you indicate where?
Mike
Forum: Plugins
In reply to: [User Avatar] User Avatar mess up and send a Warning.Getting the same error
Thanks for the heads up @kirkward, I’ll get it fixed.
MikeForum: Networking WordPress
In reply to: No Super Admin PanelOk, fixed my problem by changing where in the wp-config.php I was defining the multisite settings. Try placing these:
define('WP_ALLOW_MULTISITE', true); define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', true ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'domain.com' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 );
Right underneath the DB_COLLATE definition.
Forum: Networking WordPress
In reply to: No Super Admin PanelSame issue. I also don’t have Super Admin menu, nor do I have the ability t upgrade the Admin to Super Admin
Will be working on it over the next week or two. Hope to have it out by October.
Forum: Plugins
In reply to: [Plugin: More Fields] Feature Request: TINYMCE optionsOh, I know and figured that out, just thought it might be something worth adding to the UI.
Cheers!