Support › Forums › Flex Theme › Showing button under featured page without showing content › Reply To: Showing button under featured page without showing content
December 1, 2015 at 2:52 pm
#700
Moderator
Add this code in your functions.php file
add_filter( 'get_the_content_more_link', 'flex_custom_content', 10, 2 );
function flex_custom_content( $more_link, $more_text ) {
$more_link = str_replace( array('… ', '... '), '', $more_link );
return $more_link;
}