I am attempting to create a Radio option in the user profile that would allow users to hide their account from the list of users listed in a "Users List (Table)" menu item. I did the following:
Create a Custom field with the Title="Hidden", Alais="hidden", Type="Radio" and the Option List="1|Yes 0|No"
In Easy Profile Admin, click "Sync User"
Edited all accounts to set the option to either Yes or No (1 or 0)
Created a menu item of type "User List (Table)"
On the "Table" tab I set "Custom SQL WHERE" to: hidden=0
Saved Menu item.
The problem is when selecting this menu item on the front-end I just get a blank page. I have tried several different SQL commands (listed below) and get the same result. The only way I can get the page to display is when the "Custom SQL WHERE" is blank.
hidden NOT IN (1)
hidden=0
hidden = '0'
hidden IN (0)
Please advise. Thanks!