I made a CPT with Jetengine. All of post has date value.
I will have 3 days programs, and I want to list 3 tabs separately 3 days program.
I tried to using Meta query filter, by date, but it nothing listing (I have 3 test post for this date!)
without having a look at the exact setup and completely understanding your use case I am not sure if these are the only issues but:
The Meta key you are using in the meta query has to be just program-datum.
The Meta value you’re using is invalid. You should either just use something like {current_date:Ymd} (the date format depends on the way JE stores the date field in the database) if you want to fetch posts for the current date or something like 20231107 (again the date format depends on the way JE stores the date field in the database) if you want to fetch posts for a specific date.
Bricks is rendering {je_cpt_date} and {je_cpt_date:format} in the same manner as {current_date} - Returns the current date with the format defined at WordPress > Settings > General > Date Format.
So if you want to compare date value from CPT you need to specify format jet engine meta field as well as current date field.
for example
{je_cpt_date:Ymd} <= {current_date:Ymd}.
Your jet engine meta field should be set to save as timestamp.
Could you help me some more, because I dont understand exactly, what do you want say.
1.) Yes, I set up in metafiled the “timestap” function.
Do I understand clearly, I have to change the {current:date:xxxxxx} value for ??? what?
The day format in WP settings is same, what I want (and render in frontend good, if I put it a simple query dynamic data.) Only not work IF i want to use it, like “filter” in query.