How do I load my site without the side bars? This is for an app

Do you have access to the theme files? If so, try replacing <?php get_sidebar() ?>; with this: <?php if( stristr($_SERVER[‘HTTP_USER_AGENT’],’android’) === FALSE ) { get_sidebar(); } ?> Otherwise, what about access to the theme’s javascript file? var ua = navigator.userAgent.toLowerCase(); var isAndroid = ua.indexOf(“android”) > -1; if(isAndroid) { // Do something! // Perhaps target the … Read more

Subpages menu on sidebar plus widgets

If I’m understainding you correctly, you’ve hardcoded the wp_list_pages() function in to the widgetized area of the theme’s sidebar, and then, when you add a widget using WordPress’ back end Appearance->Widgets then you no longer see the output of the wp_list_pages() function? If that’s the case, then I think we’ve found your problem. If code … Read more

How to completely remove the sidebar? [closed]

Looks like they are hard-coded into the sidebar. So you could manually remove them, but they’ll just return when you update the theme. Best solution would be to make a child theme, if possible, and create a new sidebar without the unwanted widgets. EDIT: Remove <aside id=”archives” class=”widget”> <h1 class=”widget-title”><?php _e( ‘Archives’, ‘adamos’ ); ?></h1> … Read more