仅更改一页的 page_title 值

Change the page_title value for only one page

我正在尝试更改“所有产品”页面的页面标题,但我没能成功。我只想为这个页面设置页面标题。

这是我放在 theme.liquid 文件中 <title> 标签中的代码:

{%- if page_title == "Products" -%}
    {% assign page_title = "Paintings" } 
{%- endif -%}

如果这是默认的“所有产品集合”,这应该有效:

{%- if collection.handle == 'all' -%}
    {% assign page_title = "Paintings" }
{%- endif -%}