Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi cobby,
    place this function in functions.php of your Customizr child theme:

    add_action ('__before_body' , 'remove_post_header');
    
    function remove_post_header() {
            remove_action  ( '__before_content' , array( TC_post::$instance , 'tc_post_header' ));
    }
    Thread Starter cobbyrowan

    (@cobbyrowan)

    Thank you for your quick response. I guess I don’t quite understand how you set up a child theme so I’ll be unable to change it until I get that figured out. I tried to follow https://codex.www.ads-software.com/Child_Themes but I’m trying to understand if this is done in the WordPress editor or on your host (I have GoDaddy)…if in WordPress how do you edit this without deactivating your theme? And if on the host how do you create the css file?

    @cobbyrowan

    here is how can you do it with css only, just copy the code bellow to custom css field at your https://cobbyrowan.com/wp-admin/customize.php , tab “Custom CSS”

    header h1.entry-title {
    display: none;
    }
    header h2.entry-title {
    display: none;
    }
    Thread Starter cobbyrowan

    (@cobbyrowan)

    Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove Headers’ is closed to new replies.