website is viewing as mobile, how do I turn this off?

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.

How can I stop Jetpack mobile theme from using full size featured images?

It turns out Minileven (the mobile theme that comes bundled with Jetpack) uses the main theme’s default post_thumbnail_size, which is set using set_post_thumbnail_size. Adding this line to my main theme’s functions.php inside a function called through the after_theme_setup action helped solve the problem: set_post_thumbnail_size( 600, 400, true );

Mobile Menu not working on TwentyThirteen child theme

This is code from the codex which enables your child inheritance. add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ ); function theme_enqueue_styles() { wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ ); wp_enqueue_style( ‘child-style’, get_stylesheet_directory_uri() . ‘/style.css’, array(‘parent-style’) ); } https://codex.wordpress.org/Child_Themes

Display posts on a map

The GPS position is saved on two post meta fields: geo_latitude and geo_longitude. You can use these meta values to draw the posts as markers on a Google Maps. For example, using Google Maps API, you could have a template like this: <h1>Posts on map</h1> <div id=”map” style=”height: 400px;”></div> <script> // init map with the … Read more

App in wordpress doesnt fit to mobile screen

The best approach would be as toscho said in the comments – to write your own script an make it mobile friendly from the start. But if you want a quick, temporary solution you could do something like this: <div id=”maincontainerWrapper” style=”overflow: auto;”> <div id=”maincontainer” style=”position: relative;”> … </div> </div> then your calculator app will … Read more