Hi there, great theme! I want to change to date format in the preview and the post from "MM, DD, YY" to the regional settings "dd.mm.yy" Is there an possibility to change it easy? If not, in which code do I have to do that change? Best regards Olaf
Hello, Go to blog.php present in your theme directory and replace current code Code: <?php echo get_the_time('M, d, Y') ?> with code given below Code: <?php echo get_the_time('d, m, Y') ?> Sending image for reference Use same process for others also.