diff --git a/config/settings_schema.json b/config/settings_schema.json index dfac0a9..ca8ac7b 100644 --- a/config/settings_schema.json +++ b/config/settings_schema.json @@ -4,22 +4,24 @@ "theme_name": "WordPress Redirect", "theme_author": "Shopify", "theme_version": "1.0.0", - "theme_documentation_url": "https://github.com/Shopify/hydrogen-redirect-theme", - "theme_support_url": "https://github.com/Shopify/hydrogen-redirect-theme/issues" + "theme_documentation_url": "https://help.shopify.com/manual/online-sales-channels/wordpress/manage-checkout-traffic#wordpress-theme", + "theme_support_url": "https://help.shopify.com/" }, { - "name": "Storefront", + "name": "Manage checkout traffic", "settings": [ - { - "type": "header", - "content": "Settings" - }, { "type": "text", "id": "storefront_hostname", - "label": "Hostname", - "info": "Without protocol, e.g. mydomain.com" - }, + "label": "Redirect URL", + "info": "Where customers go when they click your logo at checkout. Exclude http:// or https://.", + "placeholder": "your-wordpress.com" + } + ] + }, + { + "name": "Custom redirects", + "settings": [ { "type": "textarea", "id": "custom_redirects", diff --git a/layout/theme.liquid b/layout/theme.liquid index 0e6e5a7..17b95db 100644 --- a/layout/theme.liquid +++ b/layout/theme.liquid @@ -156,7 +156,7 @@ {%- else -%}
Configure the redirects in "Theme settings > Storefront".
+Configure the redirects in "Theme settings > Manage checkout traffic".
{%- endif -%} {%- endif -%} diff --git a/package.json b/package.json index 18b2cd2..6659ad6 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,6 @@ }, "license": "MIT", "scripts": { - "build": "rm -rf dist && mkdir dist && zip -r ./dist/hydrogen-redirect-theme.zip ./*" + "build": "rm -rf dist && mkdir dist && zip -r ./dist/wordpress-redirect-theme.zip ./*" } }