Hi.
You need go to Apperance -> Editor in the Dashboard. Then open in Editor file standard.php.
Find there next code
if (has_excerpt()) {
the_excerpt();
} else {
echo duena_string_limit_words($excerpt,55);
}
you can replace string
echo duena_string_limit_words($excerpt,55);
with
the_content();
in that case you will have full post content if not filled Excerpt field under the post edit box and your custom excerpt if this field filled.
Or you can replace all code
if (has_excerpt()) {
the_excerpt();
} else {
echo duena_string_limit_words($excerpt,55);
}
with
the_content();
in that case you always will have full post content on blog page.
To disable “Read more” button you need to go to Appearance -> Theme Options -> Blog and find there option Enable read more button for blog posts?
Remember. Be careful with making changes in template files. Especially if you do not have much experience in WP templates editing