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

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

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

Last updated