I am globally removing the site header from entire site. I’m not using the Astra Pro version. So I am not sure that this option is available or not. I used following tips which I am sharing at below:
Open your functions.php file of your Astra child theme and drop this simple PHP code there.
1 2 3 4 5 6 7 |
<?php // do not add this code /** * Removing the site header */ function astra_header_markup() { return false; } |
Leave a Reply