Login from Mobile Phone
I had to allow Cookies in my Android Phone Web Browser. After activating Cookies I could log in my Blog and got redirected to its main page.
I had to allow Cookies in my Android Phone Web Browser. After activating Cookies I could log in my Blog and got redirected to its main page.
The plugin you are using hasn’t been updated in 2 years. Check out the Jetpack for WordPress plugin. It comes with MANY useful modules, one of which is the Mobile Theme module. Another plugin that comes to mind is WPtouch, which is available in basic and pro ($$) builds.
You could use WP and all it’s associated goodness for a mobile app backend (I’m going to do it soon myself). Custom post types are not a problem. Make a page, grab the data with a WP_Query and serve up the query results as JSON instead of HTML, though you’ll have to do this bit … Read more
By means of preg_match and the like you can only write rules for specific devices (in your case the GT-P5100). What you want to do, however, is to affect only your device (meaning: not all Galaxy Tabs). I’d vote for setting a cookie and act upon it’s particular value: setcookie(‘no_mobile_theme_please’, 1, time()+60*60*24*30, “https://wordpress.stackexchange.com/”, $_SERVER[‘SERVER_NAME’], false, … Read more
Okay, assuming you only want to restrict the categories for the front page, but still list all categories everywhere else, just add the according template file to your theme: front-page.php <?php get_header(); ?> <?php $my_query = new WP_Query(‘cat=79,120’); ?> <?php if ($my_query->have_posts()) : ?> <div id=”post-area”> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <div id=”post-<?php the_ID(); … Read more
You could have a try with wp_is_mobile(): if ( wp_is_mobile() ) { remove_action( ‘wp_print_scripts’, ‘mfbfw_load’ ); remove_action( ‘wp_print_styles’, ‘mfbfw_css’ ); remove_action( ‘wp_head’, ‘mfbfw_init’ ); } You should also check with tablets since they might have a big resolution and hence not fall in your “small screen” condition. You should note that the User Agent string … Read more
You can use ToolBar Theme Switcher. It will change the theme only for you while you are logged in. You can switch anytime using the Toolbar.
The website is working perfectly fine for me. You are using a responsive website, this means that the appearance of the site changes depending on how big your screen or browser window is. You probably had a too small browser window, if you just make it bigger it should look normal again.
You can’t use localhost in the settings at wp-admin -> Settings -> general. That literally means “this computer”– the computer requesting the web site. It only works if the browser viewing the site is on the same computer as the web server serving the site. You have to use your domain or a static IP. … Read more
javascript errors on mobile browser, not on desktop