diff --git a/files/templates/errors/patron.html b/files/templates/errors/patron.html
index 9710d443a..23422828f 100644
--- a/files/templates/errors/patron.html
+++ b/files/templates/errors/patron.html
@@ -13,7 +13,9 @@
401 Not Authorized
This page is only available to {% if SITE_NAME == 'rDrama' %}paypigs{% else %}patrons{% endif %}:
+ {% if FEATURES['PROCOINS'] -%}
{{GUMROAD_LINK}}
+ {%- endif %}
diff --git a/files/templates/formatting.html b/files/templates/formatting.html
index 37f1b0f60..474c6abb9 100644
--- a/files/templates/formatting.html
+++ b/files/templates/formatting.html
@@ -603,7 +603,7 @@ line breaks
!slots100 |
Play slots using coins - minimum 100 coins |
- {% if SITE_NAME != 'WPD' %}
+ {% if FEATURES['PROCOINS'] %}
!slotsmb100 |
Play slots using marseybux - minimum 100 marseybux |
@@ -613,7 +613,7 @@ line breaks
!blackjack100 |
Play blackjack using coins - minimum 100 coins |
- {% if SITE_NAME != 'WPD' %}
+ {% if FEATURES['PROCOINS'] %}
!blackjackmb100 |
Play blackjack using marseybux - minimum 100 marseybux |
diff --git a/files/templates/header.html b/files/templates/header.html
index ea0ba88be..ddd731d9f 100644
--- a/files/templates/header.html
+++ b/files/templates/header.html
@@ -240,7 +240,7 @@
Discord
Fediverse
{% endif %}
- {% if SITE_NAME != 'WPD' %}
+ {% if FEATURES['PROCOINS'] %}
Donate
{% endif %}
{% if SITE_NAME == 'rDrama' %}
@@ -299,7 +299,7 @@
Discord
Fediverse
{% endif %}
- {% if SITE_NAME != 'WPD' %}
+ {% if FEATURES['PROCOINS'] %}
Donate
{% endif %}
{% if SITE_NAME == 'rDrama' %}Archives{% endif %}
diff --git a/files/templates/settings_security.html b/files/templates/settings_security.html
index b710a8878..b410bb286 100644
--- a/files/templates/settings_security.html
+++ b/files/templates/settings_security.html
@@ -44,7 +44,7 @@
diff --git a/files/templates/shop.html b/files/templates/shop.html
index 5c328b8d7..a85a69bda 100644
--- a/files/templates/shop.html
+++ b/files/templates/shop.html
@@ -84,7 +84,7 @@
{% set kind = a['kind'] %}
{% if a['kind'] != "benefactor" %}Buy{% endif %}
- {% if SITE_NAME != 'WPD' %}
+ {% if FEATURES['PROCOINS'] %}
{% if a['kind'] != "grass" %}Buy with MBux{% endif %}
{% endif %}
|