Search form in of canvas menu

Hi poeple,
I am looking for a snippet or filter to get a search form in the of canvas menu of the bb theme.
This could be very usefull for a lot of my sites.
I asked the bb team and they came up with a solution, however sinds the last update the filter isnt working anymore.
Anybody ever done this?

Tia and wkr jack

Hi,

What was the code you previously used, can you share, please? :slight_smile:

hi danny,
ofcourse but promise me if you change it and it works please a copy?
wkr

function my_wp_is_mobile() {
static $is_mobile;

if ( isset($is_mobile) )
    return $is_mobile;

if ( empty($_SERVER['HTTP_USER_AGENT']) ) {
    $is_mobile = false;
} elseif (
    strpos($_SERVER['HTTP_USER_AGENT'], 'Android') !== false
    || strpos($_SERVER['HTTP_USER_AGENT'], 'Silk/') !== false
    || strpos($_SERVER['HTTP_USER_AGENT'], 'Kindle') !== false
    || strpos($_SERVER['HTTP_USER_AGENT'], 'BlackBerry') !== false
    || strpos($_SERVER['HTTP_USER_AGENT'], 'Opera Mini') !== false ) {
        $is_mobile = true;
} elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Mobile') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'iPad') == false) {
        $is_mobile = true;
} elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'iPad') !== false) {
    $is_mobile = false;
} else {
    $is_mobile = false;
}

return $is_mobile;

}