Forum Replies Created
-
AuthorPosts
-
November 2, 2014 at 2:39 am in reply to: Beautiful Theme – How to Customize "Latest Posts" section on home page? #130152
filipvisic
ParticipantTo answer my own question:
<?php /** Removing Blog Post From Home Page */ remove_action( 'genesis_loop', 'genesis_do_loop' ); add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_sidebar_content' ); genesis(); ?>
Of course, don't forget to put this into home.php file and upload it to theme's folder, next to index.php 🙂
Also, '__genesis_return_sidebar_content' (left sidebar) can be replaced with '__genesis_return_content_sidebar' (right sidebar).
November 2, 2014 at 2:37 am in reply to: Beautiful Pro Theme – "Latest Posts" section on home page #130151filipvisic
ParticipantYeah, but I want everything as it is on the homepage (sidebar, welcome widget etc.), I just don't want latest posts.
If anybody wants to know, here is code to do this:
<?php /** Removing Blog Post From Home Page */ remove_action( 'genesis_loop', 'genesis_do_loop' ); add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_sidebar_content' ); genesis(); ?>
Of course, don't forget to put this into home.php file and upload it to theme's folder, next to index.php.
Also, '__genesis_return_sidebar_content' (left sidebar) can be replaced with '__genesis_return_content_sidebar' (right sidebar).
November 2, 2014 at 1:36 am in reply to: Beautiful Pro Theme – "Latest Posts" section on home page #130145filipvisic
ParticipantI would also like to know this 🙂
If there a way to simply remove latest posts from homepage?
November 2, 2014 at 1:31 am in reply to: Beautiful Theme – How to Customize "Latest Posts" section on home page? #130144filipvisic
ParticipantIs there a simple way to just remove recent posts from homepage completely?
filipvisic
ParticipantI've manages to use text widgets as Nick suggested, and I've installed Genesis Featured Widget Amplified which gives me additional options.
In any case, this post was #win 🙂 Thanks for the help both Nick and Riavon!
filipvisic
Participant@Riavon I don't have problems with posts, they are shown as links. I wanted to link headline titles to a category.
-
AuthorPosts