Forum Replies Created
Viewing 5 posts - 1 through 5 (of 5 total)
-
AuthorPosts
-
Marco
MemberMarco
MemberMarco
MemberThis code worked for me:
add_action('template_redirect', 'child_conditional_actions');
function child_conditional_actions() {
if ( is_category()) {
remove_action( 'genesis_before_post_content', 'genesis_post_info' );
remove_action( 'genesis_after_post_content', 'genesis_post_meta' );
remove_action( 'genesis_post_content', 'genesis_do_post_content' );
}}Thanks for pointing out Jen!
-
AuthorPosts
Viewing 5 posts - 1 through 5 (of 5 total)