Support

Account

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');