Add-on [Request] Search User-Profile Custom-Fields

erich37

Well-known member
How about the ability for users to search custom user fields? Then the system could be modified to be a "dating site" with a few tweaks. Any developers interested in something like this?

That ability is not in XenForo 1.1, but may come in the future.

In the meantime, if any add-on developers want to come up with an interim solution, this is all you need to know:
Rich (BB code):
CREATE TABLE `xf_user_field_value` (
  `user_id` int(10) unsigned NOT NULL,
  `field_id` varchar(25) NOT NULL,
  `field_value` mediumtext NOT NULL,
  PRIMARY KEY (`user_id`,`field_id`),
  KEY `field_id` (`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;


Simple Example:
member_search-gif.22916



Anyone able to code this ?
 
There is so much potential functionality here. Not just dating sites but also useful for membership organizations, non-profits, and other groups who use a forum as the primary source of member interaction. A can see a developer making pretty good money with a nice mod that does this.
 
Top Bottom