diff --git a/src/templates/_layouts/default.twig b/src/templates/_layouts/default.twig
index c15c70b..1c6893f 100644
--- a/src/templates/_layouts/default.twig
+++ b/src/templates/_layouts/default.twig
@@ -6,6 +6,10 @@
+ {% if seomatic|default %}
+ {% do seomatic.config.renderEnabled(false) %}
+ {% endif %}
+
{% block head %}
{{ craft.checkout.branding.title ? craft.checkout.branding.title : siteName }}
diff --git a/src/templates/checkout/address.twig b/src/templates/checkout/address.twig
index 64330e1..18b1d11 100644
--- a/src/templates/checkout/address.twig
+++ b/src/templates/checkout/address.twig
@@ -6,8 +6,7 @@
{% block head %}
{{ craft.checkout.branding.title ? craft.checkout.branding.title : siteName }} |
- {{ 'Checkout'|t('foster-checkout') }} |
- {{ 'Address'|t('foster-checkout') }}
+ {{ 'Checkout'|t('foster-checkout') }} : {{ 'Address'|t('foster-checkout') }}
{% endblock %}
diff --git a/src/templates/checkout/email.twig b/src/templates/checkout/email.twig
index e61de52..1df9f29 100644
--- a/src/templates/checkout/email.twig
+++ b/src/templates/checkout/email.twig
@@ -3,8 +3,7 @@
{% block head %}
{{ craft.checkout.branding.title ? craft.checkout.branding.title : siteName }} |
- {{ 'Checkout'|t('foster-checkout') }} |
- {{ 'Email'|t('foster-checkout') }}
+ {{ 'Checkout'|t('foster-checkout') }} : {{ 'Email'|t('foster-checkout') }}
{% endblock %}
diff --git a/src/templates/checkout/order.twig b/src/templates/checkout/order.twig
index 25b8949..1bacc35 100644
--- a/src/templates/checkout/order.twig
+++ b/src/templates/checkout/order.twig
@@ -7,8 +7,7 @@
{% block head %}
{{ craft.checkout.branding.title ? craft.checkout.branding.title : siteName }} |
- {{ 'Checkout'|t('foster-checkout') }} |
- {{ 'Order'|t('foster-checkout') }}
+ {{ 'Checkout'|t('foster-checkout') }} : {{ 'Order'|t('foster-checkout') }}
{% endblock %}
diff --git a/src/templates/checkout/payment.twig b/src/templates/checkout/payment.twig
index 0b7de96..0819e8d 100644
--- a/src/templates/checkout/payment.twig
+++ b/src/templates/checkout/payment.twig
@@ -3,8 +3,7 @@
{% block head %}
{{ craft.checkout.branding.title ? craft.checkout.branding.title : siteName }} |
- {{ 'Checkout'|t('foster-checkout') }} |
- {{ 'Payment'|t('foster-checkout') }}
+ {{ 'Checkout'|t('foster-checkout') }} : {{ 'Payment'|t('foster-checkout') }}
{% endblock %}
diff --git a/src/templates/checkout/shipping.twig b/src/templates/checkout/shipping.twig
index 2b1b533..32f1125 100644
--- a/src/templates/checkout/shipping.twig
+++ b/src/templates/checkout/shipping.twig
@@ -3,8 +3,7 @@
{% block head %}
{{ craft.checkout.branding.title ? craft.checkout.branding.title : siteName }} |
- {{ 'Checkout'|t('foster-checkout') }} |
- {{ 'Shipping'|t('foster-checkout') }}
+ {{ 'Checkout'|t('foster-checkout') }} : {{ 'Shipping'|t('foster-checkout') }}
{% endblock %}