Displaying blog tags on blog posts

Hey guys, I’m looking to display the tags that I add to my blog posts in the back end to display in the front end on the actual blog page somewhere. Is this possible?

Thanks!!

Hey @environmentalPa ,

Would you like to share the store URL so that i can check which theme is used. Based on I can provide you exact solution.

Add a “Custom liquid” section, say, at the top of the template and paste this code:

{% if article.tags.size > 0 %}
  
    {% for t in article.tags %}
      
          {{ t | capitalize }}
      
    {% endfor %}
  

{% endif %}

Will produce this:

@environmentalPa yes it is possible, need code tweak to display tags to blog posts, I can do it for you if you can add me to the website as collaborator

Tim back at it again with the Excellent plays.