Categories
-
Recent Comments
Community News
- How To Set Up Files For Printing: A Comprehensive Guide
- Watch Tampa Bay Rays Vs Boston Red Sox Live Streaming Online Tv Espn
- Beauty of Interior and Exterior Designs
- Working with Cookies using jQuery and pure JavaScript
- 5 Advanced CSS Pseudo Classes that will Save your Day
- 8 Design Elements Your Blog Should Have
- 80 creative examples of logos featuring animals
- 50+ Free High Quality Gothic & Horror Fonts Cat: Typography
- Two “Access All Areas” Blog.SpoonGraphics Subscriptions Up For Grabs!
- Create a Fun Print-Ready Doodled Business Card Design
-
RSS Links



Shopify : The current tag as a title
Using tags in Shopify to create nested navigation is a great way to help customers find products but once they’ve browsed to the tag page you need to let your customers know what they’re looking at. A collection has the following property for this : -
{{ product.title }}That works well for collections but tags are slightly different firstly a tag doesn’t have a title so you can’t have{{ tag.title }}. Tags are attributes of products and collections but if you use {{ collection.tags }} you are going to get a list of all the tags associated with the collection, which is not what we want. The function to use is : -
{{ current_tags }}And voila this will output the current tag which you can use as a title by wrapping it in some <h2> tags or what ever you want. Nice and simple when you know how.
Related posts: