Home › Forums › General Issues › How to show total of a custom field based on a date range in Repeater Field › Reply To: How to show total of a custom field based on a date range in Repeater Field
You’re doing everything according to the documentation, the only thing that I can think of is that the where is not being changed properly, you need to look at the where.
function my_posts_where( $where ) {
// this will put the where into the error log so you can open
// the error log an look at it
error_log($where);
$where = str_replace("meta_key = 'deals_%", "meta_key LIKE 'deals_%", $where);
error_log($where);
return $where;
}
add_filter('posts_where', 'my_posts_where');
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.