Forum Replies Created
- AuthorPosts
karat
ParticipantYou can hide the date and the number of comment by using:
.entry-meta.ht-post-info {
display: none;
}karat
ParticipantWhere do you want to move it?
karat
ParticipantFor a full-width layout, just pick the layout without the side bar under the Sidebar Layout (it is on each page/post).
You can hide the title by clicking off “Display Site Title and Tagline” under general settings in the customizer.
You can hide the nav using css, paste the code below in the additional css box.
nav#ht-site-navigation {
display: none;
}Hope this helps.
karat
ParticipantHi-
You can hide the date by pasting the code below in the additional CSS section.span.entry-date.published.updated {display:none;
}If you want to hide the date on the home page add:
.ht-blog-date {
display:none;
}karat
ParticipantHi-
I just found out it is now in a file called:
total-functions.php
If you are working with a child theme, paste the below in your functions php and change the order to what you want.
Hope this helps!if( !function_exists(‘total_home_section’) ){
function total_home_section(){
$total_home_sections = apply_filters(‘total_home_sections’,
array(‘slider’,
‘about’,
‘featured’,
‘blog’,
‘portfolio’,
‘service’,
‘team’,
‘counter’,
‘testimonial’,
‘logo’,
‘cta’
)
);return $total_home_sections;
}
}karat
ParticipantThanks! I see it now.
- AuthorPosts