Drop the following code in your functions.php file add_action( ‘genesis_entry_content’, ‘show_full_content’, 1 ); function show_full_content() { if( ! is_category() ) //* returning early if it is not a category page return; add_filter( ‘genesis_pre_get_option_content_archive’, ‘__return_false’ ); //* disabling the excerpt add_filter( ‘genesis_pre_get_option_content_archive_limit’, ‘__return_false’ ); //* disabling the content limit option } if you are targeting the… Continue Reading