(This may sound weird and I hope this is allowed on this forum. But I work for a non-profit geological society and this is for our website we are re-launching. Anyone that is able to fix this issue, I will happily send a nice rock, mineral, or fossil specimen via mail as a token of our appreciation
#geologistscantcode #butwedohaveotherskills)
I currently have a searchable database on my site that has member information. However, I have given members the ability to āhideā certain fields like email, etc. with a boolean check on their submission form. I want to be able to display all the data fields unless the field āhide_emailā is checked as true, at which point I would like for the email to either not display or display something such as ānot availableā. Iāve found ways to filter the entire row based on these boolean checks using code below but Iād like instead to only filter certain fields in a row, (i.e. āemailā using āhide_emailā boolean field) and not the entire row.
( $w ( ā#dataset1ā ). setFilter ( wixData . filter (). eq ( āhide_in_searchā , Boolean ( false ))
);
Thanks!!