Hi,
I need to display the post tags in the main blog index page, where the blog excerpts are. I have it checked in Enfold options, but it only shows on the single post, not the blog index page (http://l2slegal.com/blog/).
Thanks!
Hey Taryn,
Yes, the option is not there and there is not a filter to do it via functions.php. You need to modify the inculdes/loop-index.php file to show them.
You can find this code there
if(is_single() && !post_password_required())
{
//tags on single post
if(has_tag())
{
and replace it with
if (!post_password_required())
{
//tags on single post
if(has_tag())
{
If you need further assistance please let us know.
Best regards,
Victoria
Wonderful – thank you so much! :)
Hi,
I’m glad Victoria was able to help you! If you need additional help, please don’t hesitate to contact us here in the forums.
Best regards,
Jordan Shannon