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

![](https://980438068-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MV0r5tR9bPLGnwB_pyk%2Fuploads%2FfA0pGC2lmbpdAVLiD3ae%2Fimage.png?alt=media\&token=de271ac9-6098-41d7-ab55-36cb894c5303)

#### **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 %}
