Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
488 views
in Themes by
I would like to have just link to Login, Register and have Search similar to Classic theme in Snow theme. Please help me on this.

Thanks!
Q2A version: 1.6.2

1 Answer

0 votes
by

go to Snow Theme folder -> edit qa-theme.php

set comment or delete on function nav_user_search()

Example :

function nav_user_search(){

/* start coomment

if (!qa_is_logged_in()) {

..............

}

end comment*/

qa_html_theme_base::nav_user_search();

}

Better to comment than delete. In case anything go wrong.

by
Thank you, but after commenting above code there is no way to logout. also I do see top bar.
by
Comment out the code still showing logout button for me. Have you did any change to Snow theme except that? Give link to your website, maybe help to better understanding.
by
if by top bar you mean line and box in login,register etc. you can adjust css for that. try adjusting css using chrome developer tool or firebug.
...