On my main site I have used the search widget in the sidebar.
However, the mobile theme I am using (minileven) already has a search box built into its menu bar. This results in a second search box in the sidebar (which appears after the post content) due to the widget.
How do I stop the search widget appearing on the mobile site?
This is the code for sidebar.php
from the mobile theme:
<?php
/**
* The Sidebar containing the main widget area.
*
* @package Minileven
*/
?>
<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
<div id="secondary" class="widget-area" role="complementary">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</div><!-- #secondary .widget-area -->
<?php endif; ?>
Alternatively, would it be better not to use the search sidebar widget and have the search box hardcoded into the main site theme? Is it usual for WordPress themes to do that? (I am planning on publicly releasing the WordPress theme I have made).
display: none;
– specify only for mobile viewports, not in desktop stylesAdd a class to the elements you want to hide on mobile devices / tablets / small screens:
Then use media queries in your theme’s stylesheet(s) to hide them:
As an aside, this question is borderline WPSE material and might have been better asked at SO – where it has likely been answered numerous times 🙂
The most easy thing is to use WordPress built in API functions:
Say hello to
wp_is_mobile()
!The most obvious answers is to use WordPress plugin. You can check this plugin of mine :
Widget Options for WordPress
which is available for free on the repository : https://wordpress.org/plugins/widget-options/ and easily hide widgets on mobile and other devices. You can check the screenshot below on how it’s integrated.Alternatively, you can use custom CSS. Just make sure you know the Widget ID and add something like this on your style.css
You need to check headers that the client sends, such as USER_AGENT
Then just add $mobile to your IF condition like
Hope this helps