Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
–1 vote
913 views
in Themes by
hi

how can i remove  register button from header in snow theme ?
Q2A version: 1.6.3

1 Answer

+1 vote
by
selected by
 
Best answer

Just unset the value from the content array in your qa-theme.php file:

function doctype() {
    unset($this->content['navigation']['user']['register']);
    parent::doctype();
}
...