Thanks for letting me know Tilde! I could test this and develop a snippet to change this 🙂
Just paste the code below in your theme’s (or child theme’s) functions.php file:
/* Tribe, modify this week widget date format */
function tribe_modify_this_week_date_format ( ) {
return 'j';
}
add_filter( 'tribe_events_this_week_date_format', 'tribe_modify_this_week_date_format' );
If you want to use other formats check the available options here → http://php.net/manual/es/function.date.php
Please let me know if that helps out,
Best,
Nico