I’m using the excerpt feature and all posts have ellipses at the end of the excerpt. How do I get rid of them?
Masonry Blog Page
This is our free support forum. Replies can take several days. If you need fast email support, please purchase a SiteOrigin Premium license.
Hi Edward
Thanks for reaching out.
At the moment, there isn’t an easy method of removing the ellipses. You’d need to install a child theme, you can find one here Page: Child Theme. Next, copy the excerpt function and paste it into the child theme functions.php file, here is the function https://github.com/siteorigin/siteorigin-corp/blob/develop/inc/template-tags.php#L271-L309. Finally, edit the
$ellipsis = '...';
replacing it with$ellipsis = '';
.This is an intermediate difficulty task. Sorry, we don’t have an easier way of achieving this at the moment.