Hi! Thank you so much for this brilliant theme. I’ve been using and recommending it for years π
I recently updated to version 1.1.12 and my old function to remove excerpts everywhere (home, category…) isn’t working anymore.
In the previous version, I changed the functions.php to be like this:
if ( ! function_exists( ‘pinboard_excerpt_length’ ) ) :
/**
* Change the number of words shown in excerps
*
* @since Pinboard 1.0
*/
function pinboard_excerpt_length( $length ) {
if( pinboard_is_teaser() ) {
if( has_post_format( ‘aside’ ) )
return 0;
else
return 0;
} else
return 0;
}
endif;
In this version I can’t do it directly on the functions.php because my website crashes. I have tried everything on this forum and also adding the above function to the “Custom CSS” in Theme Options but it isn’t working.
I would like to remove all excerpts from everywhere, showing nothing. Not even “…” or read more, simply nothing at all.
Could anyone please help me? Thanks in advanced!
Sergio