delete the post-meta in single-page?

How can I delete the post-meta [username + date] in the posts? I can’t find it in the single.php

Thank you in advance!

Hi @mmrgb,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

.single-post article ul.post-meta {
    display: none;
}

Best Regards,
Movin