I have a channel with a custom field for city. Then in the template there is a list of cities, with all the entries filtered appropriately using search:custom_field=“city” on multiple weblog:entries tags.
Now however, I have added a secondary, optional custom field for a second city. Ideally, I would like to get entries that have either of the custom fields set to a single city. Although the search parameter can be added multiple times, it filters the entries by
search:custom_field="city" AND search:custom_field2="city"instead of
search:custom_field="city" OR search:custom_field2="city"How else can I accomplish this?