Hi Edgar
Thanks for pointing this issue.
We have just updated MilestoneZ theme to solve the issue of date.
To display the correct date
Go to Appearance -> Editor -> custom-functions.php
at line no. 902 you will find the below code
$post_date = '<div class="postdt"><span>'.get_the_date('m').'</span> '.get_the_date('M').'</div>';
Just need to replace this line with below code
$post_date = '<div class="postdt"><span>'.get_the_date('d').'</span> '.get_the_date('M').'</div>';
Regards
Grace Themes