- This topic has 2 replies, 2 voices, and was last updated 7 years, 11 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › Search Date Range using ACF (Not using post_date)
Tagged: dates
Is it possible to perform a date range search within the S&F plugin that ties in with the ACF date picker?
From what I can see the only date related option I have relates to the post date, whereas the client has asked for some sort of event search functionality.
The date search does work when referencing the post_date
Yup, ACF creates post meta, so you want to add a post meta field, and choose the date option 🙂
Just be warned, ACF creates 3 most meta entries for a custom field, only one of them can be used with the field. If your custom field was “location” you would have:
#1 _location
#2 field_5a16902ae5c07
#3 location
You need to use key #3, without the underscore at the start of the key name, as it is this meta key that holds the term data.
Thanks