Hello,
Do you want to show the full content in archive pages? You can do so in Appearance > Customize > “General Options” > “Blog Content Archive”. Set it to “Full text”.
Or, do you want to remove the “Read More” button? You can use add_filter for this filter hook: galaxis_excerpt_more. Using a custom plugin or child theme’s functions.php, you can add this code:
add_filter( 'galaxis_excerpt_more', function( $more ) ) {
$more = ' [...]';
return $more;
}
It has a read more button after […] by default.
Or, you mean to ignore the posts where you add a read more tag using the block in the editor. For this you can filter the posts before returning like this:
add_filter( 'pre_get_posts', function( $query ) {
if ( is_home() || is_archive() ) {
$query->set( 's', '-<!--more-->' );
}
return $query;
} );
Prepending a term with a hyphen(-) will exclude posts matching that term.