Jump to content
Sign in to follow this  
thenbrent

WordPress 3.0 Multisite, wp-signup EcoPro

Recommended Posts

thenbrent

Hi Team, Because EcoPro includes the content wrapping divs in the page/post template file rather than header/footer files, wp-signup.php on a multi-site installation of WordPress 3.0 shows in a quirky full width. The content wrapping divs should be included in the header (and footer) so this page displays correctly. Or, if you just want a quick hack, like I did, to save throwing half a dozen if/else statements at the top of header, something like this will work for only the wp-signup.php page:

	if( strpos( $_SERVER[ 'REQUEST_URI' ], 'wp-signup.php' ) != false ) {
		include(THEME_LIB.'/_spotlight.php');
		include(THEME_LIB.'/_sub_head.php');
		echo '<div id="pagecontent" class="contentcontainer fix"><div class="texture fix"><div class="content>';
	}
	

Cheers, Brent

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×