
Pablo Borysenco(@pavlo_borysenco)
34,196 Posts
Quote from Pablo Borysenco on April 24, 2024, 11:09
Hello
since the update on woof to husky. - No! The problem is in your theme. Your theme hides the sidebar on mobile devices - https://share.pluginus.net/video/v20240424120803.mp4 - You should disable this functionality
Please paste your license key here - https://share.pluginus.net/image/i20230222134241.png -> https://share.pluginus.net/image/i20230222134511.png
Hello
since the update on woof to husky. - No! The problem is in your theme. Your theme hides the sidebar on mobile devices - https://share.pluginus.net/video/v20240424120803.mp4 - You should disable this functionality
Please paste your license key here - https://share.pluginus.net/image/i20230222134241.png -> https://share.pluginus.net/image/i20230222134511.png

Pablo Borysenco(@pavlo_borysenco)
34,196 Posts
Quote from Pablo Borysenco on April 24, 2024, 13:14
this should work regardless of the width of the device screen. the main thing is that this device is mobile
this should work regardless of the width of the device screen. the main thing is that this device is mobile

Pablo Borysenco(@pavlo_borysenco)
34,196 Posts
Quote from Pablo Borysenco on April 25, 2024, 10:14
Hello
Please read this - https://stackoverflow.com/questions/77563654/how-to-add-ipad-in-wp-is-mobile
Add in functions.php
function include_ipad_in_mobile_view( $is_mobile ) {
if (strpos($_SERVER['HTTP_USER_AGENT'], 'iPad') !== false) {
$is_mobile = true;
}
return $is_mobile;
}
add_filter( 'wp_is_mobile', 'include_ipad_in_mobile_view' );
Hello
Please read this - https://stackoverflow.com/questions/77563654/how-to-add-ipad-in-wp-is-mobile
Add in functions.php
function include_ipad_in_mobile_view( $is_mobile ) {
if (strpos($_SERVER['HTTP_USER_AGENT'], 'iPad') !== false) {
$is_mobile = true;
}
return $is_mobile;
}
add_filter( 'wp_is_mobile', 'include_ipad_in_mobile_view' );