wpForo Community
  • wpForo 3.0 AI Edition
    • AI Features
      • AI Semantic Search
      • AI Topic Summary
      • AI Topic Suggestions
      • AI Translation
      • AI Chat Assistant
      • AI Bot Reply
      • AI Moderation
      • AI Tasks
      • AI Analytics
      • AI Knowledge Generation
    • Forum Layouts
  • gVectors AI
  • Support
    • wpForo Community
    • wpForo AI Service Support
    • wpForo Addons Support
  • Documentation
  • Addons
Download wpForo 3.0

  • Forums
  • What’s New
  • Members
  • Recent Posts
AI Search
Classic Search
 Search Phrase:
 Search Type:
Advanced search options
 Search in Forums:
 Search in date period:

 Sort Search Results by:

AI Assistant
Forums
Search
 
Notifications
Clear all

Search result for:  Adding fields to registration form

 Search Phrase:
 Search Type:
Advanced search options
 Search in Forums:
 Search in date period:

 Sort Search Results by:


Page 7 / 7 Prev
RE: How do I get my users to enter their date of birth while registering?
How-to and Troubleshooting - wpForo 2.0
TheRealBlati...
2 years ago
23 Relevance
@tutrix Sorry! I didn't mean to make you frustrated. I'm new to all of this and I just assumed it would give me an option to restrict users who input certain dates. For example, if a user input a date that says they're 15, the sign up would fail. But I understand now. One more question. I'm having a problem getting "passwords" to the inactive fields, so I can drag it on top of the registration form. I want my users to be able to set their passwords on the registration form. Even when I edit password and click on "set", it will not pop up on the inactive list on the register form. Can you help me fix this? Every "light blue" field is under inactive fields on the register form except for "password".
View entire post
RE: Question about registration form
How-to and Troubleshooting - wpForo 2.0
Martin
5 years ago
23 Relevance
The checkbox fields are required fields, and they don't contain any data. So the checkbox values are not saved in database.
View entire post
Different member fields for usergroups
How-to and Troubleshooting - wpForo 2.0
MerkWert
3 years ago
23 Relevance
Hi there, I am using wpForo Version 2.2.2 and wpForo - User Custom fields Version 3.0.1. I am offering 4 Forums with 4 different Usergroups each assigned to one of them. I would like to create different profile fields for the respective Usergroups. I understand that I can show and hide fields in dependance of the UserGroup, but I am wondering if I can also display the different fields in the registration form. The ideal solution would be a conditional logic. But as far as I understand that is not possible. Is there any other way to manage this? Best regards, Meike
View entire post
RE: How to edit registering form
How-to and Troubleshooting - wpForo 2.0
Chris
4 years ago
23 Relevance
Hi @tuomanh01, wpForo doesn't have any option to set a payment for reg or something else, you need to use a different plugin which has such functionality. About: wpForo has a login/reg/reset password form which can be used for the whole website, and wpForo has User Custom fields Addon, with which you can customize wpForo registration form ass well.
View entire post
RE: Can't make new topic or post
How-to and Troubleshooting - wpForo 2.0
Robert
8 years ago
23 Relevance
These are not wpForo fields, this comes from other plugins, maybe from WooComemrce or other plugins which have user fields. You should remove them from registration. Nobody fill so many fields on registration.wpForo registration form only has Email and username field.
View entire post
RE: Unlink user Display Name and About Me
How-to and Troubleshooting - wpForo 2.0
Robert
5 years ago
23 Relevance
Hi @motorhype, I'm sorry, but there is no way to unlink them. As an alternative solution you can remove the Display Name and About fields from Forum Account fields and prevent them to edit that data. You should put this hook code in the functions.php file of your current WordPress active theme or use the Code Snippet plugin: function wpforo_custom_remove_user_fields( $fields ){ $remove_fields = array('about', 'display_name'); if( !empty($fields) ){ foreach( $fields as $r => $rows ){ foreach( $rows as $c => $cols ){ foreach( $cols as $f => $field ){ if( $field && in_array($field, $remove_fields) ){ unset($fields[$r][$c][$f]); } } } } } return $fields;}add_filter( 'wpforo_get_account_fields', 'wpforo_custom_remove_user_fields');
View entire post
RE: BUG with guest posts
How-to and Troubleshooting - wpForo 2.0
Robert
5 years ago
23 Relevance
Ok, let me explain what's going on in your forum. The topics are not deleted by wpForo. They are set unapproved, and you can set them approved and show on forum in Dashboard > Forums > Moderation admin page. Why do they become unapproved? Because the "Front - Can pass moderation" permission is disabled for Guests usergroup. You can go to Dashboard > Forums > Usergroups admin page, edit the Guest usergroup and enable (check) the "Front - Can pass moderation" permission. Once this is enabled all new topics of guests who don't fill username and email can see their topics right after creating that, because their topics will not be unapproved. Here is the Gif video, the username becomes Anonymous: However, if you want to set the Name and Email fields required, you should put this code in functions.php file of your current active WordPress theme: function wpforo_set_topic_name_email_fields_required( $fields ){ if( wpfval( $fields, 'name') ) $fields['name']['isRequired'] = 1; if( wpfval( $fields, 'email') ) $fields['email']['isRequired'] = 1; return $fields;}add_filter( 'wpforo_post_after_init_fields', 'wpforo_set_topic_name_email_fields_required'); How to Easily Add Custom Code in WordPress (without Breaking Your Site)
View entire post
RE: Homepage and Main Forum page are not reflecting the same things
How-to and Troubleshooting - wpForo 2.0
Foodiemike2
6 years ago
23 Relevance
So I excluded the following JS (include JS for User Custom fields, Advanced Attachments, Private Messaging, and wpForo Emoticons) from Sucuri's cache but no change: /wp-content/plugins/wpforo/wpf-admin/js/backend.js/wp-content/plugins/wpforo/wpf-admin/js/deactivation-dialog.js/wp-content/plugins/wpforo/wpf-assets/js/ajax.js/wp-content/plugins/wpforo/wpf-assets/js/frontend.js/wp-content/plugins/wpforo/wpf-assets/js/ajax.js/wp-content/plugins/wpforo/wpf-assets/js/snfb.js/wp-content/plugins/wpforo/wpf-assets/js/tinymce-code.js/wp-content/plugins/wpforo/wpf-assets/js/tinymce-emoji.js/wp-content/plugins/wpforo/wpf-assets/js/tinymce-link.js/wp-content/plugins/wpforo/wpf-assets/js/tinymce-pre.js/wp-content/plugins/wpforo/wpf-assets/js/tinymce-spoiler.js/wp-content/plugins/wpforo/wpf-themes/classic/phrases.js/wp-content/plugins/wpforo/wpforo-advanced-attachments/assets/js/admin.js/wp-content/plugins/wpforo/wpforo-advanced-attachments/assets/js/attach.js/wp-content/plugins/wpforo/wpforo-advanced-attachments/assets/js/wpfa-jquery.fileupload-ui.js/wp-content/plugins/wpforo/wpforo-advanced-attachments/wpf-third-party/file-uploader/js/jquery.blueimp-gallery.min.js/wp-content/plugins/wpforo/wpforo-advanced-attachments/wpf-third-party/file-uploader/js/jquery.fileupload-audio.js/wp-content/plugins/wpforo/wpforo-advanced-attachments/wpf-third-party/file-uploader/js/jquery.fileupload-image.js/wp-content/plugins/wpforo/wpforo-advanced-attachments/wpf-third-party/file-uploader/js/jquery.fileupload-process.js/wp-content/plugins/wpforo/wpforo-advanced-attachments/wpf-third-party/file-uploader/js/jquery.fileupload-video.js/wp-content/plugins/wpforo/wpforo-advanced-attachments/wpf-third-party/file-uploader/js/jquery.fileupload.js/wp-content/plugins/wpforo/wpforo-advanced-attachments/wpf-third-party/file-uploader/js/load-image.all.min.js/wp-content/plugins/wpforo-emoticons/assets/emoticons.js/wp-content/plugins/wpforo-emoticons/assets/admin.js/wp-content/plugins/wpforo-emoticons/assets/lity.js/wp-content/plugins/wpforo-polls/assets/js/poll.js/wp-content/plugins/wpforo-private-messages/assets/js/pm.js/wp-content/plugins/wpforo-user-custom-fields/assets/js/backend.js/wp-content/plugins/wpforo-user-custom-fields/assets/js/fields-importer.js/wp-content/plugins/wpforo-user-custom-fields/assets/js/formbuilder.js/wp-content/plugins/wpforo-user-custom-fields/assets/js/frontend.js/wp-content/plugins/wpforo-user-custom-fields/assets/js/shortcode.js I also excluded a few more things such as: /wp-content/plugins/wpforo/wpf-themes/classic/colors.css and   /wp-includes/js/jquery/jquery.js   /wp-includes/js/jquery/jquery-migrate.min.js   /wp-includes/js/utils.min.js   /wp-includes/js/plupload/moxie.min.js   /wp-includes/js/plupload/plupload.min.js   /wp-includes/js/json2.min.js
View entire post
RE: WpForo and Mailchimp
How-to and Troubleshooting - wpForo 2.0
TimRodman
6 years ago
23 Relevance
Hi @bchase, Is this still working for you? I also purchased the wpForo Custom fields add-on and created a custom field (not FNAME, but something else). My custom field doesn't get synced into MailChimp by the Mailchimp User Sync Plugin even though I mapped it in the Send Additional fields section. I think the problem is because the wpForo Custom Field plugin stores data in the wp_tmee_wpforo_profiles table rather than the standard wp_tmee_usermeta table. I can map additional fields stored in the wp_tmee_wpforo_profiles table and have them sync to Mailchimp just fine. It's the wpForo Custom fields that I'm having trouble with.
View entire post
Page 7 / 7 Prev

Join Us!

Recent Topics

  • wpForo Keeps Creating New Pages

    By PostmasterGS 3 days ago

  • No login on Iphone

    By Justaguy76 6 days ago

  • Link previews

    By Justaguy76 6 days ago

  • Links with page numbers are not correcly formed based on if the user can see unapproved post or not

    By wilf214 1 week ago

  • What's New displayed twice

    By 009Webmaster 1 week ago

  • Robert

    wpForo 3.1 is released!

    By Robert 1 week ago

Recent Posts

  • RE: wpForo 3.1 is released!

    Hi @novedddd, Sure, it first checks if the WP Cron is...

    By Martin , 23 hours ago

  • Sofy

    RE: wpForo Keeps Creating New Pages

    Hi, Please read the following documentation carefully...

    By Sofy , 2 days ago

  • marsm

    RE: Weekly forum email summaries

    Long-time user here running a fairly active community a...

    By marsm , 4 days ago

  • Sofy

    RE: Link previews

    Hi justaguy76, Please check out the wpForo Embeds add...

    By Sofy , 4 days ago

  • Sofy

    RE: No login on Iphone

    Could you please provide the URL?

    By Sofy , 4 days ago

  • Sofy

    RE: Links with page numbers are not correcly formed based on if the user can see unapproved post or not

    Hi, Please use the following hook code: add_filter(...

    By Sofy , 4 days ago

  • RE: Restricting what can be edited in My Profile

    @robert Thank you - all issues now resolved 🥳

    By 009Webmaster , 1 week ago

  • RE: Finding the Block/Ignore Function

    The simplest way is to just have a block/ignore button ...

    By HoosierHuddle , 1 week ago

Share:
Forum Information
Recent Posts
Unread Posts
Tags
  • 19 Forums
  • 14.2 K Topics
  • 71.3 K Posts
  • 59 Online
  • 6,160 Members
Our newest member: Waqas
Latest Post: wpForo 3.1 is released!
Forum Icons: Forum contains no unread posts Forum contains unread posts
Topic Icons: Not Replied Replied Active Hot Sticky Unapproved Solved Private Closed

 Powered by wpForo version 3.1.0

wpForo

The most advanced WordPress forum plugin with powerful AI features for modern communities. Build engaging forums with cutting-edge AI technology.

AI Edition

  • AI Features
  • Forum Layouts
  • gVectors AI
  • wpForo Addons

Support & Docs

  • Documentation
  • Support Forum
  • AI Service Support
  • Addons Support

Legal

  • gVectors Team
  • Contact Us
  • AI Features Privacy Policy
  • AI Features Terms of Service

© 2026 wpForo. All rights reserved. Made with ❤️ by gVectors Team