Site logo

Archived topic

how do I change the layout settings for the "solo" template?

3 replies · Started by Maria Isabel on September 29, 2021

Viewing posts 1–4 of 4

Hi Maria,

You can use this PHP snippet to remove the archive title:

add_action( 'wp', 'lh_remove_archive_title' );
function lh_remove_archive_title() {
        remove_action( 'generate_archive_title', 'generate_archive_title' );
}

Adding PHP: https://docs.generatepress.com/article/adding-php/

To remove categories/author’s name/date/tags , the settings are at customizer > layout > blog > archive:
https://docs.generatepress.com/article/blog-overview/

Not sure what text resume is, can you explain a bit?

Let me know if this helps :)

This archived topic is closed to new replies.