Hi again.
In the single blog post, can you please let me know where I can edit the meta elements?
I would like to:
1. Remove the “in” text displayed for Post Category.
2. Remove the extra “/” as I don’t have any any to display after that.
Thanks!
Hey cindy531!
Thank you for using our theme.
You have to modify a theme file. If you are using a child theme, copy enfold/includes/loop-index.php to the corresponding child theme fiolder enfold-child/includes/, otherwide modify the original file:
// goto line 165:
echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
echo $cats;
echo '</span><span class="text-sep text-sep-cat">/</span>';
// and replace with:
echo '<span class="blog-categories minor-meta">';
echo $cats;
echo '</span>';
Best regards,
Günter
Perfect. Thanks Günter!