Multisite Signup page different header and footer

I am using roots on a multisite install and getting a different header and footer than the rest of my site when I go to the sign up page at /wp-signup.php

This seems really odd and can’t figure it out. The footer also has “… is proudly powered by Wordpress” and rss links. Is anyone having this issue?

Having the same problem and read this


but if you add header.php and footer.php as blank files youll get just that blank header and footer.
So what if you want the header and the footer from the theme to be shown ?

only solution i found was
create file header.php and footer.php in root of the theme and

header.php
<?php include('templates/head.php'); include('templates/header.php'); ?>
footer.php
<?php include('templates/footer.php'); ?>

1 Like