Jump to content

How to remove sidebar from register.php?


cluster

Recommended Posts

How can I remove the sidebar from register.php "Create Your Account" and set page width to 100%?
I want to remove sidebar which shows:
Already registered with us? If so, click the button below to login to our client area from where you can manage your account.

I have already added this hook but it does not work for register.php

<?php

// Cart Sidebar Removal / Resizing v8.1 Hook
// Written by brian!

function cart_remove_sidebars_hook($vars)
{	
	$validtemplates = array("");
	if ($vars['inShoppingCart'] && !in_array($vars['templatefile'],$validtemplates)) {
		$head_return = "<style>#order-standard_cart .cart-body { width:100% !important; }
		.cart-sidebar {display: none;}</style>";
		return $head_return;
	}
}
add_hook("ClientAreaHeaderOutput",1,"cart_remove_sidebars_hook");

 

Link to comment
Share on other sites

  • 3 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated