Hi,
Thank you for that answer. I racked my brains a bit, and I finally found a solution by slightly modifying the request in the vsel-widget-shortcodes.php file.
// query
$today = vsel_local_timestamp();
$currentday = date(l);
if ($currentday == "Monday") {
$mondaytimestamp = strtotime('This Monday');
}else{
$mondaytimestamp = strtotime('Last Monday');
}
$sundaytimestamp = strtotime('This Sunday');
$sundaytimestamp = $sundaytimestamp + 86399;
$vsel_meta_query = array(
'relation' => 'AND',
array(
'key' => 'event-date',
'value' => array ($mondaytimestamp, $sundaytimestamp),
'compare' => 'BETWEEN',
'type' => 'NUMERIC'
)
);
So far, it works. We’ll see tomorrow (Tuesday), if it still works ??