Forum Replies Created
-
AuthorPosts
-
erikvlie
MemberIf nothing is working, have you tried turning on comments in Settings > Discussion with the option "Automatically close comments on articles older than n days" disabled?
I had the same problem, and this helped me.
erikvlie
MemberThe h4 titles used to be prettier. They used a different baseline if I'm not mistaken.
erikvlie
MemberHi people,
I asked Studiopress' support to help me, but they referred me to a developer or their snippet repository. However, I just now found this snippet -- but not on this site, but here (plenty more): http://genesissnippets.com -- and this works great for me!
/** Replace the standard loop with our custom loop */remove_action( 'genesis_loop', 'genesis_do_loop' );
add_action( 'genesis_loop', 'child_do_custom_loop' );
function child_do_custom_loop() {
global $paged; // current paginated page
global $query_args; // grab the current wp_query() args
$args = array(
'category__not_in' => 42, // exclude posts from this category
'paged' => $paged, // respect pagination
);
genesis_custom_loop( wp_parse_args($query_args, $args) );
}
erikvlie
MemberHi people,
I asked Studiopress' support to help me, but they referred me to a developer or their snippet repository. However, I just now found this snippet -- but not on this site, but here (plenty more): http://genesissnippets.com -- and this works great for me!
erikvlie
MemberHi people,
I asked Studiopress' support to help me, but they referred me to a developer or their snippet repository. However, I just now found this snippet -- but not on this site, but here (plenty more): http://genesissnippets.com -- and this works great for me!
erikvlie
MemberLet me tune in. In Education 2, I have set All Categories to show on the blog page; the home page shows blog entries below the widgetized area with the slider, intro, etc. I entered a category ID in the Exclude Categories field, but that category keeps showing up.
Can you advise on what to do? Preferably without coding because I suck at it. Copy/paste is OK ;-).
Thanks!
erikvlie
Member@jordydme - I thought that was the solution, yes, but no it isn't. I want to have all categories except one, and when I fill in the category-ID in the Exclude field, that category keeps being listed anyway.
I think I may have to add a line or two to the functions.php file, but I am very bad at PHP and these actions and filters, and don't know where to start...
December 28, 2012 at 6:38 am in reply to: Education 2: how to not add menu but still have Search field #7863erikvlie
MemberNever mind, folks. Just found it...
-
AuthorPosts