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%
Get Custom Field Values
This plugin provides a powerful widget, shortcode (with shortcode builder tool), and template tags for easily retrieving and displaying custom field values for posts or pages. The power of custom fields gives this plugin the potential to be dozens of plugins all rolled into one. This plugin allows you to harness the power of custom fields/meta data. Use the “Get Custom Field” widget, the [custom_field] shortcode (which has a post editor sidebar widget to help you build the shortcode), or one of six template tags to retrieve and display custom fields. Find a custom field for the current post, a specified post, a recent post, or randomly. And for the custom field values found by the plugin, you may optionally specify text or HTML to appear before and after the results. If nothing is found, then nothing is display (unless you define text to appear when no results are found). If multiple results are found, only the first will be displayed unless you specify a string to be used to join the results together (such as “,”), in which case all will be returned. Visit the Examples section to see how this plugin can be cast in dozens of different ways. There are six template tags provided by this plugin. Here they are, with an explanation of when they are appropriate for use: c2c_get_custom() : Use this inside “the loop” to retrieve a custom field value for a post c2c_get_current_custom() : This is only available on the permalink post template (single.php) and page template (page.php). Can be used inside or outside “the loop”. Useful for using custom field to define text you want to include on a post or page’s header, footer, or sidebar. c2c_get_post_custom() : Useful when you know the ID of the post whose custom field value you want. c2c_get_random_custom() : Retrieve the value of a random instance of the specified custom field key, as long as the field is associated with a published posted, non-passworded post (you can modify a setting in the plugin file to search passworded posts as well). c2c_get_random_post_custom() : Retrieves the value of random custom field(s) from a post when you know the ID of the post you’re interested in. c2c_get_recent_custom() : Retrieves the most recent (according to the associated post’s publish date) value of the specified custom field. You can filter the custom field values that the plugin would display. Add filters for ‘the_meta‘ to filter custom field data (see the end of the code file for commented out samples you may wish to include). You can also add per-meta filters by hooking ‘the_meta_$sanitized_field‘. $sanitized_field is a clean version of the value of $field where everything but alphanumeric and underscore characters have been removed. So to filter the value of the “Related Posts” custom field, you would need to add a filter for ‘the_meta_RelatedPosts‘. Links: Plugin Homepage | Plugin Directory Page | GitHub | Author Homepage Developer Documentation Developer documentation can be found in DEVELOPER-DOCS.md. That documentation covers the numerous template tags, hooks, and shortcode provided by the plugin. As an overview, these are the template tags provided the plugin: c2c_get_custom() : Template tag for use inside “the loop” and applies to the currently listed post. c2c_get_current_custom() : Template tag for use on permalink (aka single) page templates for posts and pages. c2c_get_post_custom() : Template tag for use when you know the ID of the post you’re interested in. c2c_get_random_custom() : Template tag for use to retrieve a random custom field value. c2c_get_random_post_custom() : Template tag for use to retrieve random custom field value(s) from a post when you know the ID of the post you’re interested in. c2c_get_recent_custom() : Template tag for use outside “the loop” and applies for custom fields regardless of post. These are the hooks provided by the plugin: c2c_get_custom_field_values_shortcode : Filter to customize the name of the plugin’s shortcode. c2c_get_custom_field_values_post_types : Filter to customize the post types that should support the shortcode builder metabox. get_custom_field_values/can_author_use_shortcodes : Filter to customize if post author can make use of the ‘custom_field’ shortcode. get_custom_field_values/show_metabox : Filter to customize if the shortcode builder metabox is shown. The shortcode provided is [custom-field], which has a number of attributes to customize its behavior and output.