diff --git a/basicswap/templates/offer_confirm.html b/basicswap/templates/offer_confirm.html
index b5d2cbf..7adf3e3 100644
--- a/basicswap/templates/offer_confirm.html
+++ b/basicswap/templates/offer_confirm.html
@@ -168,6 +168,8 @@
{% if data.swap_style == 'xmr' %}
+ {% if data.coin_from | int in (6, 9) %} {# Not XMR or WOW #}
+ {% else %}
Fee From Confirm Target
@@ -202,6 +204,7 @@
Lock Tx Spend Fee: {{ data.amt_from_lock_spend_tx_fee }} {{ data.tla_from }}
{% endif %}
+ {% endif %}
@@ -238,7 +241,9 @@
- {% if data.swap_style == 'xmr' and coin_to != '6' %}
+ {% if data.swap_style == 'xmr' %}
+ {% if data.coin_to | int in (6, 9) %} {# Not XMR or WOW #}
+ {% else %}
Fee To Confirm Target
@@ -273,6 +278,7 @@
{% endif %}
+ {% endif %}
@@ -467,4 +473,4 @@
{% include 'footer.html' %}