Home › Forums › Support › Blockquote and Tables tags converting in GeneratePress › Reply To: Blockquote and Tables tags converting in GeneratePress
October 30, 2015 at 12:25 am
#148736
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/
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-development