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 -%}
{%- endif -%}
{{- 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 -%}
