Squarespace Developer Platform 中的业务信息

Business Information in Squarespace Developer Platform

如何访问设置中的信息?似乎没有任何文档。我能够使以下工作正常进行:

{.section location}
<p class="text-center">
    {.if addressLine1}{addressLine1}<br>{.end}
    {.if addressLine2}{addressLine2}<br>{.end}
    {.if websiteSettings.contactPhoneNumber}{websiteSettings.contactPhoneNumber}{.end}
</p>
{.end}

但是你如何访问:

您将在 'websiteSettings' 范围内找到公司名称、联系电子邮件和其他类似设置。在某些情况下,此类数据进一步嵌套在 'storeSettings'.

请参阅以下示例 Squarespace 站点,使用参数 format=json-pretty (see docs) 显示为 JSON。

https://websitesettings.squarespace.com/?format=json-pretty

此时 link,您将能够看到公司名称和联系电子邮件(“嘿,这是我的公司名称”和“mycontactemail@mybusiness.com”)。在浏览器中使用 CTRL + F 在页面上搜索这两个术语中的任何一个,您将在各自的范围内找到它们。

在后台,这两条信息是在'Settings > Business Information'下录入的。

因此,在 Squarespace .region、.block、.list 或 .item 文件中,您可以执行如下操作:

{.section websiteSettings}
  {contactEmail}
  {.section storeSettings}
    {businessName}
  {.end}
{.end}