Okay, you can modify this date format using a Child Theme, add this to the functions.php file:
function colormag_date_display() { ?>
<div class=”date-in-header”><?php
echo date_i18n(‘l, j FY’); ?>
</div><?php
}
The above function will overide the default function that displays the date in the header, hope this helps.
Sorry but this doesn’t help. Where should I place this code directly?