Reply To: Blockquote and Tables tags converting in GeneratePress

Home Forums Support Blockquote and Tables tags converting in GeneratePress Reply To: Blockquote and Tables tags converting in GeneratePress

Home Forums Support Blockquote and Tables tags converting in GeneratePress Reply To: Blockquote and Tables tags converting in GeneratePress

#148736
Tom
Lead Developer
Lead Developer

Hi Chris,

Give this function a try:

add_filter( 'generate_show_excerpt','generate_full_post_search' );
function generate_full_post_search( $show_excerpt )
{
    if ( is_search() )
		return false;
	
	return $show_excerpt;
}

Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/