From e00d1b12839756a3f9eafa0eca86117c8fbbcdb0 Mon Sep 17 00:00:00 2001 From: Oscar Stahlberg Date: Mon, 4 Mar 2024 18:49:18 +0100 Subject: [PATCH] Fix asterisk opening `em` tag Since I don't know the templating engine used, I can only speculate on how to solve this problem. `*` may not work in the code block, `\*` may not escape properly. --- docs/squarespace-integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/squarespace-integration.md b/docs/squarespace-integration.md index 752b9cbb..63651fe7 100644 --- a/docs/squarespace-integration.md +++ b/docs/squarespace-integration.md @@ -71,4 +71,4 @@ In Squarespace, all completed orders are being redirected to a page with the fol `https://yourwebsite.com/commerce/orders/977f8aa0-f618-47d0-8787-ee37b1457cc0` -To track completed orders, you can set up a pageview goal. Since the ID (in our example `/977f8aa0-f618-47d0-8787-ee37b1457cc0`) changes with every order, you will need to group those dynamic pages. You can use asterisks (*) to do so. Asterisks can be placed on either end or in the middle of any page path URL. For the example above, you can set up a pageview goal `/commerce/orders/*` to group all of the dynamically created order completion pages. +To track completed orders, you can set up a pageview goal. Since the ID (in our example `/977f8aa0-f618-47d0-8787-ee37b1457cc0`) changes with every order, you will need to group those dynamic pages. You can use asterisks (*) to do so. Asterisks can be placed on either end or in the middle of any page path URL. For the example above, you can set up a pageview goal `/commerce/orders/*` to group all of the dynamically created order completion pages.