Custom User Registration Fields for Tutor LMS
Custom User Registration Fields for Tutor LMS lets you add any extra fields to your Tutor LMS student and instructor registration forms — without writing a single line of code. Need to collect a phone number at registration? A company name, teaching qualification, or country? Configure it in two minutes from the WordPress admin panel and the field appears on your registration form automatically. Unlike generic custom field plugins, this plugin is built specifically for Tutor LMS. Every field you add is displayed in all the places your team actually works: ✅ Student registration form — fields appear automatically. ✅ Instructor registration form — separate field sets for instructors. ✅ Tutor LMS frontend dashboard — students and instructors can view and update their own data from the Tutor profile settings page. ✅ Tutor LMS admin backend — LMS Managers can read and edit all custom field data from Tutor’s built-in user management interface. ✅ WordPress admin profile pages — data also visible in the standard WP admin for admins who work there. Field types supported Text Phone (tel) Email Number URL / Website Date Textarea (multi-line) Select / Dropdown (with your own options) Key features No-code field builder — add, edit, and reorder fields from a clean settings page. No PHP, no shortcodes, no template editing required. Required or optional — toggle each field as required or optional directly in the settings UI. Required fields enforce completion at registration. Separate student and instructor field sets — configure entirely different fields for the student registration form and the instructor registration form. Placeholder text — set placeholder text per field to guide users on what to enter. Dropdown options — for Select fields, define your options list (one per line) directly in the settings panel. Automatic data display — data saved at registration is immediately visible on the Tutor frontend dashboard profile, the Tutor admin backend, and the WP admin user profile. Updating data from any of these locations works correctly. v1.x upgrade safe — existing field configurations from plugin version 1.x are automatically migrated to the v2.0 data format on first activation. No data loss. Who is this plugin for? Tutor LMS site owners who need to capture extra information at registration (phone, company, qualifications, country, etc.) Online course platforms that need instructor vetting fields (teaching experience, certifications, areas of expertise) LMS admins who need to view and manage that data without leaving the Tutor interface How it works Install and activate the plugin (Tutor LMS must also be active). Go to Users → Tutor LMS Fields in your WordPress admin. Add fields under the Student Registration Fields or Instructor Registration Fields tab. Give each field a label, a meta key, a type, and optionally a placeholder or select options. Save — fields appear on the registration forms immediately. Developer notes All field values are stored as standard WordPress user meta, accessible via get_user_meta( $user_id, 'your_meta_key', true ). The plugin hooks into the correct Tutor LMS action hooks: tutor_student_reg_form_end — student registration form display tutor_instructor_reg_form_end — instructor registration form display tutor_profile_edit_input_after — Tutor frontend dashboard profile edit tutor_profile_update_after — Tutor frontend profile save (AJAX) tutor_backend_profile_fields_after — Tutor admin backend metabox show_user_profile / edit_user_profile — WP admin profile pages user_register — registration save personal_options_update / edit_user_profile_update — WP admin profile save More plugins by UserElements UM Widgets for Elementor WP User Data User Broadcast Email Personalized User Menu for Tutor LMS
Top keywords
- tutor23×4.01%
- registration17×2.96%
- fields14×2.44%
- profile14×2.44%
- field13×2.26%
- user13×2.26%
- lms12×2.09%
- admin10×1.74%
- data10×1.74%
- tutor lms10×1.74%
- form9×1.57%
- instructor8×1.39%
Moonstack Ultimate Elementor Kit
Moonstack Ultimate Elementor Kit is a powerful plugin that extends Elementor Page Builder with a comprehensive set of professional widgets for displaying posts, custom fields, sliders, and various content elements. In the WordPress admin dashboard, the plugin settings and tools are available under the MU Elementor Kit menu. Features Post Display Widgets – Show post titles, content, excerpts, featured images, and meta data Advanced Sliders – Banner slider, card slider, and logo slider with multiple effects Custom Fields Display – Display ACF and custom post meta fields with various formats Interactive Buttons – Custom buttons with icons, animations, and advanced linking Fully Customizable – Extensive styling options and hook system for developers Widgets Included Post Widgets Post Title – Display post titles with word limit and linking options Post Content – Show full content or excerpts with formatting control Post Excerpt – Custom excerpt display with fallback options Post Meta – Display post metadata (date, author, categories, tags) Post Featured Image – Featured image display with linking and effects Post Custom Fields – Show custom fields and ACF fields with various formats Slider Widgets Banner Slider – Full-width banner slider with content overlays Card Slider – Card-based slider for posts, products, or custom content Logo Slider – Customer logo slider with hover effects and linking Form Widgets Form – Advanced form builder with AJAX submission, email notifications, and Google reCAPTCHA (v2/v3) integration External Services This plugin supports embedding videos from third-party video platforms such as YouTube, Vimeo, and Dailymotion. These services are used only when the site administrator explicitly selects a video field type and provides a corresponding video URL. When embedding a video: – The video ID is used to generate an iframe embed URL. – No personal user data is collected or stored by the plugin. – No data is transmitted automatically without user action. External services used: Dailymotion Service: Video embedding Website: https://www.dailymotion.com Privacy Policy: https://www.dailymotion.com/legal/privacy Terms of Service: https://www.dailymotion.com/legal/terms Vimeo Service: Video embedding Website: https://vimeo.com Privacy Policy: https://vimeo.com/privacy Terms of Service: https://vimeo.com/terms YouTube Service: Video embedding Website: https://www.youtube.com Privacy Policy: https://policies.google.com/privacy Terms of Service: https://www.youtube.com/t/terms Google reCAPTCHA Service: Spam protection and security Website: https://www.google.com/recaptcha/about/ Privacy Policy: https://policies.google.com/privacy Terms of Service: https://policies.google.com/terms Basic Widgets Custom Button – Advanced buttons with icons, animations, and links Developer Friendly All widgets include extensive hook systems for customization: moonulel_after_post_title_single_render moonulel_post_content_single_before_html_output moonulel_post_excerpt_single_before_render moonulel_before_post_meta_single_render moonulel_post_featured_image_single_before_render moonulel_post_custom_field_single_before_field_output moonulel_post_button_content moonulel_banner_slider_slide_background moonulel_card_slider_slides moonulel_logo_slider_logos moonulel_form_submitted_data moonulel_form_before_send_emails moonulel_form_after_save_db Customization All widgets can be customized using WordPress hooks. Example: // Modify post title output add_filter('moonulel_post_title_single_before_output', function($title, $post, $settings) { return strtoupper($title); }, 10, 3); // Add custom content after banner slider add_action('moonulel_banner_slider_after_container', function($settings, $unique_id, $widget) { echo ' Custom Nav '; }, 10, 3); // Filter form widget submitted data before sending email or saving add_filter('moonulel_form_submitted_data', function($submitted_data, $form_id, $post_id, $settings) { // Add custom hidden data $submitted_data['Source'] = 'Facebook Ads'; return $submitted_data; }, 10, 4);