Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 6 years ago.
Improve this questionHow to remove fresh posts (latest news) on the main page? I can't find how to remove the "fresh posts"(latest news), I don't need it. Themes the Virtue. Tell me please. Thank you in advance. See below pictures.
Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 6 years ago.
Improve this questionHow to remove fresh posts (latest news) on the main page? I can't find how to remove the "fresh posts"(latest news), I don't need it. Themes the Virtue. Tell me please. Thank you in advance. See below pictures.
Solution to the problem. Very simple! Go to admin panel yoursite/wp-admin
> Appearance > Theme Settings > Homepage Layout > The Layout Manager homepage > all Enabled to Disabled. Done! Now your Homepage is clean.
Here is a screenshot, I hope you understand. Have a nice day :)
From what I understand you want to remove the entire section outlined in red on your picture?
To do that, go into the admin > appearance > editor. Then on the right, find home.php and click it to edit the file.
Remove the following code from the file and click "Update File" to save...
<?php if ( !have_posts() ) : ?>
<div class="alert">
<?php esc_html_e( 'Sorry, no results were found.', 'virtue' ); ?>
</div>
<?php get_search_form();
endif;
if( $summary == 'full' ){
while (have_posts()) : the_post();
get_template_part( 'templates/content', 'fullpost' );
endwhile;
} else {
while (have_posts()) : the_post();
get_template_part( 'templates/content', get_post_format() );
endwhile;
}
/**
* @hooked virtue_pagination - 10
*/
do_action( 'virtue_pagination' );
?>
Important Note
This will make an edit directly to your theme. A better way to do this is to make a CHILD THEME, then edit the file there. This will prevent you from losing any edits when your theme updates.
/wp-admin/theme-install.php?browse=featured
– Sergey Kiziev Commented Jan 4, 2019 at 11:37