You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/storefront/themes/guides/checkout.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -183,7 +183,7 @@ To prevent your analytics from counting customers more than once, you can add th
183
183
184
184
```
185
185
186
-
For example if you wanted to add a conversion action in Google Ads for tracking purchases (To set up Google Ads conversion tracking, follow the [Google Ads instructions](https://support.google.com/google-ads/answer/6095821){:target="_blank"} for creating a conversion action).
186
+
For example if you wanted to add a conversion action in Google Ads for tracking purchases (To set up Google Ads conversion tracking, follow the [Google Ads instructions](https://support.google.com/google-ads/answer/6095821) for creating a conversion action).
Copy file name to clipboardExpand all lines: docs/storefront/themes/settings.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,21 @@
2
2
sidebar_label: Settings
3
3
sidebar_position: 3
4
4
---
5
+
6
+
```mdx-code-block
7
+
8
+
import Tabs from '@theme/Tabs';
9
+
import TabItem from '@theme/TabItem';
10
+
import useBaseUrl from '@docusaurus/useBaseUrl';
11
+
12
+
```
13
+
5
14
# Theme Settings
6
15
7
16
### Introduction
8
17
9
18
Theme settings are the power behind the dashboard theme editor experience allowing users to customize the look and feel of their storefront without needing to know how to code.
Settings are passed to templates settings context variable allowing you to access settings values by their name. See example below of changing the layout by conditionally adding a class based on a radio setting.
Copy file name to clipboardExpand all lines: docs/storefront/themes/templates/tags.md
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ The `app_asset_url` tag is used to reference asset files included in app snippet
20
20
21
21
### app_hook
22
22
23
-
The `app_hook` tag specifies a theme storefront location Apps can inject snippets into to extend storefront templates from Apps. Theme developers should ensure their templates include all available `app_hooks` to ensure compatability with all Apps.
23
+
The `app_hook` tag specifies a theme storefront location Apps can inject snippets into to extend storefront templates from Apps. Theme developers should ensure their templates include all available `app_hooks` to ensure compatibility with all Apps.
24
24
25
25
```django
26
26
{% app_hook 'global_header' %}
@@ -39,7 +39,7 @@ import AppHookLocations from '@site/_snippets/_app-hook-locations.mdx';
39
39
### boolean operators
40
40
If tags may be used in combination with boolean operators for conditional control flow.
@@ -52,13 +52,12 @@ If tags may be used in combination with boolean operators for conditional contro
52
52
|`!=`| inequality |
53
53
|`<`| less than |
54
54
|`>`| greater than |
55
-
|`<=`| less than or equal to |
56
-
|`>=`| greater than or equal to |
57
-
55
+
|`<=`| less than or equal to |
56
+
|`>=`| greater than or equal to |
58
57
59
58
### comment
60
59
61
-
Ignores everything between {% comment %} and {% endcomment %}. An optional note may be inserted in the first tag. For example, this is useful when commenting out code for documenting why the code was disabled.
60
+
Ignores everything between `{% comment %}` and `{% endcomment %}`. An optional note may be inserted in the first tag. For example, this is useful when commenting out code for documenting why the code was disabled.
0 commit comments