I am using Custom SQL WHERE to hide some users in a user list menu item. Payment status is a selection field. This command works fine.
user_id NOT IN (210,374) AND payment_status NOT LIKE 'suspended' AND payment_status NOT LIKE 'withdrawn'
but when I add another NOT LIKE it breaks.
user_id NOT IN (210,374) AND payment_status NOT LIKE 'suspended' AND payment_status NOT LIKE 'withdrawn' AND payment_status NOT LIKE ‘member-elect’
Can you help? Thanks.