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:
Anyone able to code this ?