Remove the author’s name from blog posts
Remove the author's name
To remove the blog author's name, you will need to edit the Liquid in your blog.liquid
and your article-template.liquid
templates. If you are using Boundless, you will need to edit the Liquid in your blog.liquid
and article.liquid
templates.
From your Shopify admin, go to Online Store > Themes.
Find the theme you want to edit, and then click Actions > Edit code.
From the Shopify app, tap Store.
In the Sales channels section, tap Online Store.
Tap Manage themes.
Find the theme you want to edit, and then click Actions > Edit code.
From the Shopify app, tap Store.
In the Sales channels section, tap Online Store.
Tap Manage themes.
Find the theme you want to edit, and then click Actions > Edit code.
In the Templates folder, click
blog.liquid
.Use
ctrl
+F
on a PC orcommand
+F
on a Mac to locate this Liquid tag and delete it:
{{ article.author }}
For Simple and Supply, the author and date share the same liquid tag. To remove both, use ctrl
+ F
on a PC or command
+ F
on a Mac to locate this Liquid tag and delete it:
{{ 'blogs.article.author_on_date_html' | t: author: author, date: date }}
If you want to keep only the date, then replace the code above with:
{{ date }}
Click Save.
In the Sections folder, click
article-template.liquid
. For Boundless, in the Templates folder, clickarticle.liquid
.Use
ctrl
+F
on a PC orcommand
+F
on a Mac to locate this Liquid tag and delete it:
{{ article.author }}
For Simple and Supply, the article author and article date share the same liquid tag. To remove both, use ctrl
+ F
on a PC or command
+ F
on a Mac to locate this Liquid tag and delete it:
{{ 'blogs.article.author_on_date_html' | t: author: author, date: date }}
If you want to keep only the date, then replace the code above with:
{{ date }}
- Click Save.