> For the complete documentation index, see [llms.txt](https://elessi-docs.nasatheme.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://elessi-docs.nasatheme.com/common-issues-and-faqs/faq-guides/how-to-disable-the-mobile-bottom-navbar-without-affecting-the-mobile-footer.md).

# How to disable the mobile bottom navbar without affecting the mobile footer

![](/files/EekHdYLbJRrrKrfMQPMv)

#### **Simply,  please copy all codes here and then add them to your child theme at wp-content / themes / elessi-theme-child / function.php:**

{% code title="function" %}

```php
add_action('init', 'ct_woo_actions', 9999);
function ct_woo_actions() {
    remove_action('nasa_static_content', 'elessi_bottom_bar_menu', 22);
}
```

{% endcode %}
