0
votes

I've created a Wordpress landing page which currently converts at 14%. I removed sidebar and footer to keep the page less distracting.

I think the page can convert even better if I remove the menu from the top. However when I try to create a custom page template it doesn't work. I cannot remove the header without breaking up the whole layout.

Can anyone point me the right direction?

Thanks

1

1 Answers

0
votes

Can you share the link you're working on so I can give a more specific answer?

You can probably do it with CSS. Or you need to use a conditional statement to hide sections within the header.php file - you can't remove the whole file cause that will break your HTML structure.

The conditional would be something like:

<?php if (!is_page_template('landing-page.php')) { ?>
   <!-- YOUR HEADER HERE -->
<?php } ?>