diff --git a/templates/modular.html.twig b/templates/modular.html.twig
index dc6b175..709c434 100644
--- a/templates/modular.html.twig
+++ b/templates/modular.html.twig
@@ -29,7 +29,9 @@
{% for module in page.collection() if module.header.visible is not same as(false) %}
{% set current_module = (module.active or module.activeChild) ? 'active' : '' %}
- - {{ module.menu }}
+ {% if not module.header.menu_hide %}
+ - {{ module.menu }}
+ {% endif %}
{% endfor %}
{% for mitem in site.menu %}
-