This topic has 10 replies, 2 voices, and was last updated 7 years, 2 months ago ago by Rose Tyler
Hi,
i was fascinated by the default demo of the lifestyle theme and now im wondering how to set this up? I tried with the documentation, but i wasn’t successfull, could you please help me?
Thank you and regards
Lisa
Hello,
Do you mean this page https://8theme.com/demo/lifestyle/blog/ ? Please see screenshot http://prntscr.com/gpv1bc
Regards
Hi Rose thank you – I finished it thank you. But i have another question – the top bar, where i can switch currency or language – how is it possible to edit this? thank you so much
To remove these icons go to Appearance > Widgets > add an empty Text widget to “Left Side top bar area” also you may use this area to display own information http://prntscr.com/gpvpkx.
Regards
Thank you Rose, and how do i edit the look of the comment forms in single post pages? Thank you
You’re welcome!
This is default WordPress comment form, so there are no options to edit this form in theme.
What exactly do you want to change?
Regards
Thank you for your answer – i wanted the name and email field above the comment field.
Regards
Please read this doc https://codex.wordpress.org/Function_Reference/comment_form
you may use this code in function.php file of your child theme:
function etheme_move_comment_field_to_bottom( $fields ) {
/**
* Move comment field to bottom.
*/
$comment_field = $fields['comment'];
unset( $fields['comment'] );
$fields['comment'] = $comment_field;
return $fields;
}
add_filter( 'comment_form_fields', 'etheme_move_comment_field_to_bottom' );
and add this css code in Theme Options > Styling > Custom css:
.single-post .comment-respond .form-group[class*=comment]:first-child{padding-left:0px !important;}
.single-post .comment-respond .form-group[class*=comment]:nth-child(2){padding-left:30px !important;}
Regards
Thank you 🙂
You’re welcome!
Regards
You must be logged in to reply to this topic.Log in/Sign up