• Hello,
    I want to remove the byline (author, publishing-date) on every single post on my website. I also want it to disappear on my “Home”-page. Which PHP file do I have to modify and what do I have to remove? I already found some stuff on the internet for other themes and I already managed to remove it on the WordPress-Themes but it’s different in Freelancer so I need your help.
    Thank you,
    Karl K.

Viewing 1 replies (of 1 total)
  • Theme Author Tom

    (@edge22)

    Hi there,

    Sorry for not getting back to you sooner – these child theme forums aren’t monitored.

    You can do this using our Blog add-on in the Customizer, or you can use some filters so you don’t have to edit core files:

    generate_post_author
    generate_show_categories
    generate_show_tags
    generate_show_comments

    Using filters: https://generatepress.com/knowledgebase/filter-list/

    Of course, you can use some CSS as well:

    .entry-meta {
        display: none;
    }

    Hope this helps ??

Viewing 1 replies (of 1 total)
  • The topic ‘Removing byline’ is closed to new replies.