Hello again!
This theme is awesome! I love it.
I have a suggestion:
you could have in the header a logout button if user is logged.
I achieve that with this in helpers.php, but i am sure you can do it better:
if ( ! function_exists( 'jevelin_nav_wrap_logout' ) ) :
function jevelin_nav_wrap_logout() {
if ( is_user_logged_in('login') ) :
$val = esc_html__( 'Sair', 'jevelin' );
else :
//
endif;
return '‘; } endif;
Than i had $wrap .= jevelin_nav_wrap_logout(); to the header options.
The pre is messing up the code above, i hope you understand something.
When i finish my custom theme i am going to share here in forum
Thank you!