De naam van de auteur verwijderen uit blogposts
Verwijder de naam van de auteur
Om de naam van de blogauteur te verwijderen, moet je Liquid in je templates blog.liquid
en je article-template.liquid
bewerken. Als je Boundless gebruikt, moet je Liquid in je templates voor blog.liquid
en article.liquid
bewerken.
Ga in het Shopify-beheercentrum naar Onlinewinkel > Thema's.
Zoek het thema dat je wilt bewerken, klik op de knop ... om het actiemenu te openen en klik vervolgens op Code bewerken.
Tik in de Shopify-app op Winkel.
Tik in het gedeelte Verkoopkanalen op Onlinewinkel.
Tik op Thema's beheren.
Zoek het thema dat je wilt bewerken, klik op de knop ... om het actiemenu te openen en klik vervolgens op Code bewerken.
Tik in de Shopify-app op Winkel.
Tik in het gedeelte Verkoopkanalen op Onlinewinkel.
Tik op Thema's beheren.
Zoek het thema dat je wilt bewerken, klik op de knop ... om het actiemenu te openen en klik vervolgens op Code bewerken.
Klik in de map Templates op
blog.liquid
.Gebruik
ctrl
+F
op een PC ofcommand
+F
op een Mac-computer om dit Liquid-tag te vinden en te verwijderen:
{{ 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 }}
Klik op Opslaan.
Klik in de map Secties op
article-template.liquid
. Klik voor Boundless in de map Templates oparticle.liquid
.Gebruik
ctrl
+F
op een PC ofcommand
+F
op een Mac-computer om dit Liquid-tag te vinden en te verwijderen:
{{ 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 }}
- Klik op Opslaan.