How can I modify blog post author and date in Area Theme code?

This is some of the code in the Area Theme that I’m using with Shopify. It is in the blog-posts.liquid section.

How do I change the code so that the author name doesn’t show up OR that it isn’t under my personal name (and I put it under my business name instead) AND also how do I delete the date post made? Thanks in advance.

{%- if tags or section.settings.show_date or section.settings.show_author -%}

{%- if section.settings.show_date -%}
{{- article.published_at | time_tag: format: "month_day_year" -}}
{%- endif -%} {%- if section.settings.showtags and article.tags.size > 0 -%}
{% for tag in article.tags %} {%- assign tag_html = "" | append: tag | append: "" -%} {{ tag_html | link_to_tag: tag | replace: '<a', '<a class="color-base heading-color-hover animation-underline hover-area--native"' }}{% unless forloop.last %}, {% endunless %} {% endfor %}
{%- endif -%} {%- if section.settings.show_author -%}
{{ article.author -}}
{%- endif -%}
{%- endif -%}

Hi @myusername2 ,

In your code snippet, I’ve marked two lines that display the created date of the blog post and the author’s name. You can delete these two lines if you don’t want to show the creation date and author’s name, or you can comment out the code block. Hopefully, this resolves your issue @myusername2