WPtouch - Version 4.3.18

Version Description

Download this release

Release Info

Developer wptouch
Plugin Icon 128x128 WPtouch
Version 4.3.18
Comparing to
See all releases

Code changes from version 4.3.16 to 4.3.18

admin/pages/wptouch-admin-general-settings.php CHANGED
@@ -342,6 +342,24 @@ function wptouch_render_compat_page( $page_options ) {
342
  'wptouch_pro'
343
  );
344
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345
  $page_options = apply_filters( 'wptouch_settings_compat', $page_options );
346
 
347
  if ( !defined( 'WPTOUCH_IS_FREE' ) ) {
342
  'wptouch_pro'
343
  );
344
 
345
+ wptouch_add_page_section(
346
+ WPTOUCH_ADMIN_SETUP_COMPAT,
347
+ _x( 'Caching', 'caching services like Varnish can sometimes cause issues with WPtouch.', 'wptouch-pro' ),
348
+ 'caching-compatibility',
349
+ array(
350
+ wptouch_add_pro_setting(
351
+ 'checkbox',
352
+ 'disable_no_cache_request_headers',
353
+ __( 'Stop sending "no cache" request headers for mobile site.', 'wptouch-pro' ),
354
+ wptouchize_it( __( 'By default WPtouch requests that mobile pages are not cached. This helps prevent the mobile site from being served to desktop users and the desktop site from being served to mobile users.', 'wptouch-pro' ) ),
355
+ WPTOUCH_SETTING_BASIC,
356
+ '4.3'
357
+ ),
358
+ ),
359
+ $page_options,
360
+ 'wptouch_pro'
361
+ );
362
+
363
  $page_options = apply_filters( 'wptouch_settings_compat', $page_options );
364
 
365
  if ( !defined( 'WPTOUCH_IS_FREE' ) ) {
core/cache.php CHANGED
@@ -24,4 +24,33 @@ function wptouch_cache_get_mobile_user_agents() {
24
  global $wptouch_pro;
25
 
26
  $user_agents = $wptouch_pro->get_supported_user_agents();
27
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  global $wptouch_pro;
25
 
26
  $user_agents = $wptouch_pro->get_supported_user_agents();
27
+ }
28
+
29
+ /**
30
+ * Checks for a WPtouch option regarding whether or not the mobile site should be cached.
31
+ *
32
+ * If the page isn't supposed to be cached, add headers to the request that signal to the caching system
33
+ * not to cache this page.
34
+ */
35
+ function wptouch_maybe_add_no_cache_headers_to_request() {
36
+ $settings = wptouch_get_settings();
37
+
38
+ // Check to be sure this hasn't been disabled.
39
+ if ( 1 === $settings->disable_no_cache_request_headers ) {
40
+ return;
41
+ }
42
+
43
+ wptouch_request_no_caching_when_mobile_theme_showing();
44
+ }
45
+ add_action( 'wptouch_mobile_theme_showing', 'wptouch_maybe_add_no_cache_headers_to_request' );
46
+
47
+ /**
48
+ * Adds headers to the request which should prevent systems from caching this page.
49
+ */
50
+ function wptouch_request_no_caching_when_mobile_theme_showing() {
51
+ $ts = gmdate('D, d M Y H:i:s') . ' GMT';
52
+ header("Expires: $ts");
53
+ header("Last-Modified: $ts");
54
+ header('Pragma: no-cache');
55
+ header('Cache-Control: no-cache, must-revalidate, maxage=0');
56
+ }
core/class-wptouch-pro-settings.php CHANGED
@@ -59,6 +59,7 @@ class WPtouchDefaultSettings30 extends WPtouchSettings {
59
  // Setup - Compatibility
60
  $this->process_desktop_shortcodes = false;
61
  $this->remove_shortcodes = '';
 
62
 
63
  $this->url_filter_behaviour = 'disabled';
64
  $this->filtered_urls = '';
59
  // Setup - Compatibility
60
  $this->process_desktop_shortcodes = false;
61
  $this->remove_shortcodes = '';
62
+ $this->disable_no_cache_request_headers = false;
63
 
64
  $this->url_filter_behaviour = 'disabled';
65
  $this->filtered_urls = '';
core/class-wptouch-pro.php CHANGED
@@ -258,6 +258,8 @@ class WPtouchProFour {
258
  require_once( WPTOUCH_DIR . '/core/class-cache-smash.php' );
259
  $this->cache_smash = new WPtouchCacheSmash;
260
 
 
 
261
  if ( is_admin() ) {
262
  // New Admin panels
263
  require_once( WPTOUCH_DIR . '/core/admin-load.php' );
@@ -396,7 +398,9 @@ class WPtouchProFour {
396
  }
397
 
398
  function desktop_shortcode_magic( $content ) {
399
- if ( $this->is_mobile_device && $this->showing_mobile_theme ) {
 
 
400
 
401
  global $woocommerce;
402
 
258
  require_once( WPTOUCH_DIR . '/core/class-cache-smash.php' );
259
  $this->cache_smash = new WPtouchCacheSmash;
260
 
261
+ require_once( WPTOUCH_DIR . '/core/cache.php' );
262
+
263
  if ( is_admin() ) {
264
  // New Admin panels
265
  require_once( WPTOUCH_DIR . '/core/admin-load.php' );
398
  }
399
 
400
  function desktop_shortcode_magic( $content ) {
401
+ global $post;
402
+
403
+ if ( $this->is_mobile_device && $this->showing_mobile_theme && empty( $post->post_password ) ) {
404
 
405
  global $woocommerce;
406
 
core/compat.php CHANGED
@@ -250,3 +250,26 @@ function wptouch_disable_plugin_incompatibility_notice() {
250
  update_option( '_wptouch-disable-plugin-incompat-notice', $dismissed_plugin_incompat_notices, false );
251
  }
252
  add_action( 'wp_ajax_disable_plugin_incompatibility_notice', 'wptouch_disable_plugin_incompatibility_notice' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  update_option( '_wptouch-disable-plugin-incompat-notice', $dismissed_plugin_incompat_notices, false );
251
  }
252
  add_action( 'wp_ajax_disable_plugin_incompatibility_notice', 'wptouch_disable_plugin_incompatibility_notice' );
253
+
254
+ /**
255
+ * Allows posts in the selected language to display when using a custom Posts page.
256
+ *
257
+ * @see https://github.com/sureswiftcapital/wptouch-pro/pull/42
258
+ *
259
+ * @param $is_latest_posts_page
260
+ * @param $latest_posts_page
261
+ * @param $page_id
262
+ *
263
+ * @return bool
264
+ */
265
+ function wptouch_wpml_latest_posts( $is_latest_posts_page, $latest_posts_page, $page_id ) {
266
+ if ( function_exists( 'icl_object_id' ) && $page_id != $latest_posts_page ) {
267
+ $translated_id = icl_object_id( $latest_posts_page, 'page', true );
268
+ if ( $translated_id == $page_id ) {
269
+ return true;
270
+ }
271
+ }
272
+
273
+ return $is_latest_posts_page;
274
+ }
275
+ add_filter( 'foundation_is_custom_latest_posts_page', 'wptouch_wpml_latest_posts', 10, 3 );
lang/wptouch.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the WPtouch Mobile Plugin package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WPtouch Mobile Plugin 4.3.16\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wptouch\n"
7
- "POT-Creation-Date: 2017-04-27 17:45:36+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -377,7 +377,7 @@ msgstr ""
377
  #: admin/pages/custom/wptouch-admin-wizard.php:179
378
  #: admin/settings/html/theme-browser-item-detail.php:52
379
  #: admin/settings/html/updates-available.php:35
380
- #: admin/settings/html/updates-available.php:71 core/class-wptouch-pro.php:986
381
  msgid "Download"
382
  msgstr ""
383
 
@@ -387,7 +387,7 @@ msgstr ""
387
  #: admin/settings/html/installed_icon_sets_ajax.php:13
388
  #: admin/settings/html/installed_icon_sets_ajax.php:26
389
  #: admin/settings/html/theme-browser-item.php:12
390
- #: core/class-wptouch-pro.php:985
391
  msgid "Installed"
392
  msgstr ""
393
 
@@ -684,7 +684,7 @@ msgid "Analytics Code"
684
  msgstr ""
685
 
686
  #: admin/pages/wptouch-admin-general-settings.php:239
687
- #: admin/pages/wptouch-admin-general-settings.php:630
688
  msgid "None"
689
  msgstr ""
690
 
@@ -735,91 +735,108 @@ msgstr ""
735
  msgid "Filters out shortcodes from displaying when WPtouch Pro is active."
736
  msgstr ""
737
 
738
- #: admin/pages/wptouch-admin-general-settings.php:350
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
739
  msgid "Active Plugins"
740
  msgstr ""
741
 
742
- #: admin/pages/wptouch-admin-general-settings.php:361
743
  msgid ""
744
  "Attempts to disable plugins for mobile visitors. Some plugins don‘t support "
745
  "this feature due to the way they load in WordPress."
746
  msgstr ""
747
 
748
- #: admin/pages/wptouch-admin-general-settings.php:373
749
  msgid "Mobile Devices & Browsers"
750
  msgstr ""
751
 
752
- #: admin/pages/wptouch-admin-general-settings.php:433
753
  msgid "Tablets"
754
  msgstr ""
755
 
756
- #: admin/pages/wptouch-admin-general-settings.php:491
757
  msgid "Tablet Devices & Browsers"
758
  msgstr ""
759
 
760
- #: admin/pages/wptouch-admin-general-settings.php:506
761
  msgid ""
762
  "If your theme supports tablets, devices and browsers WPtouch Pro can be "
763
  "enabled for will be listed below."
764
  msgstr ""
765
 
766
- #: admin/pages/wptouch-admin-general-settings.php:512
767
  msgid "Additional User Agents"
768
  msgstr ""
769
 
770
- #: admin/pages/wptouch-admin-general-settings.php:518
771
  msgid "User agents to add"
772
  msgstr ""
773
 
774
- #: admin/pages/wptouch-admin-general-settings.php:519
775
  msgid "You can enter partial i.e. \"nokia\" or full agent strings"
776
  msgstr ""
777
 
778
- #: admin/pages/wptouch-admin-general-settings.php:536
779
  msgid "Menu Setup"
780
  msgstr ""
781
 
782
- #: admin/pages/wptouch-admin-general-settings.php:554
783
  msgid "Menu Options"
784
  msgstr ""
785
 
786
- #: admin/pages/wptouch-admin-general-settings.php:560
787
  msgid "Enable parent items as links"
788
  msgstr ""
789
 
790
- #: admin/pages/wptouch-admin-general-settings.php:561
791
  msgid "If disabled, parent menu items will only toggle child items."
792
  msgstr ""
793
 
794
- #: admin/pages/wptouch-admin-general-settings.php:568
795
  msgid "Use menu icons"
796
  msgstr ""
797
 
798
- #: admin/pages/wptouch-admin-general-settings.php:569
799
  msgid "Adds the ability to associate icons with menu items"
800
  msgstr ""
801
 
802
- #: admin/pages/wptouch-admin-general-settings.php:580
803
  msgid "Menu Icon Sets"
804
  msgstr ""
805
 
806
- #: admin/pages/wptouch-admin-general-settings.php:593
807
  #: admin/settings/html/installed_icon_sets_ajax.php:4
808
- #: core/class-wptouch-pro.php:2181 core/class-wptouch-pro.php:2182
809
  #: core/config.php:54
810
  msgid "Custom Icons"
811
  msgstr ""
812
 
813
- #: admin/pages/wptouch-admin-general-settings.php:624
814
  msgid "WordPress Pages"
815
  msgstr ""
816
 
817
- #: admin/pages/wptouch-admin-general-settings.php:642 core/admin-render.php:78
818
  #: core/admin-render.php:110 core/config.php:94
819
  msgid "Customize Theme"
820
  msgstr ""
821
 
822
- #: admin/pages/wptouch-admin-general-settings.php:708
823
  msgctxt "wptouch-pro"
824
  msgid "Subscribe to updates about new releases and tips"
825
  msgstr ""
@@ -922,7 +939,7 @@ msgstr ""
922
  msgid "No extensions available"
923
  msgstr ""
924
 
925
- #: admin/settings/html/image-upload.php:7 core/class-wptouch-pro.php:978
926
  msgid "Upload Complete!"
927
  msgstr ""
928
 
@@ -941,13 +958,13 @@ msgid ""
941
  msgstr ""
942
 
943
  #: admin/settings/html/installed_icon_sets_ajax.php:25
944
- #: core/class-wptouch-pro.php:984
945
  msgid "Installing"
946
  msgstr ""
947
 
948
  #: admin/settings/html/installed_icon_sets_ajax.php:25
949
  #: admin/settings/html/theme-browser-item-detail.php:3
950
- #: core/admin-extensions.php:365 core/class-wptouch-pro.php:983
951
  msgid "Install"
952
  msgstr ""
953
 
@@ -1159,7 +1176,7 @@ msgstr ""
1159
  msgid "Setup Wizard"
1160
  msgstr ""
1161
 
1162
- #: core/admin-menu.php:49 core/class-wptouch-pro.php:1653
1163
  msgid "Settings"
1164
  msgstr ""
1165
 
@@ -1256,131 +1273,131 @@ msgstr ""
1256
  msgid "Reset Settings"
1257
  msgstr ""
1258
 
1259
- #: core/class-wptouch-pro.php:663
1260
  msgid ""
1261
  "Automatic theme migration from wp-content/uploads/wptouch-data directory "
1262
  "failed. Please manually move these folders to wp-content/wptouch-data: %s"
1263
  msgstr ""
1264
 
1265
- #: core/class-wptouch-pro.php:682
1266
  msgid ""
1267
  "%sWPtouch: %s was recently disabled, but is still affecting your website and "
1268
  "caching pages.%s"
1269
  msgstr ""
1270
 
1271
- #: core/class-wptouch-pro.php:683
1272
  msgid ""
1273
  "%sPlease reactivate the plugin, disable page caching, then deactivate the "
1274
  "plugin again to correct this issue.%s"
1275
  msgstr ""
1276
 
1277
- #: core/class-wptouch-pro.php:684 core/class-wptouch-pro.php:693
1278
  msgid ""
1279
  "%sFixing this issue prevents cached desktop pages being served to mobile "
1280
  "devices and vice-versa.%s"
1281
  msgstr ""
1282
 
1283
- #: core/class-wptouch-pro.php:685 core/class-wptouch-pro.php:694
1284
  msgid ""
1285
  "%sOnce fixed, this message will be dismissed automatically. Until fixed, "
1286
  "%sWPtouch will not be shown%s to mobile visitors, and cannot be previewed.%s"
1287
  msgstr ""
1288
 
1289
- #: core/class-wptouch-pro.php:692
1290
  msgid "%sWPtouch: %s needs to be configured to work correctly with WPtouch.%s"
1291
  msgstr ""
1292
 
1293
- #: core/class-wptouch-pro.php:695
1294
  msgid ""
1295
  "%sTo fix the issue, follow our %sstep-by-step setup guide%s on support."
1296
  "wptouch.com%s"
1297
  msgstr ""
1298
 
1299
- #: core/class-wptouch-pro.php:707
1300
  msgid "WPtouch Repair Required"
1301
  msgstr ""
1302
 
1303
- #: core/class-wptouch-pro.php:714
1304
  msgid "Your mobile theme was either broken or missing."
1305
  msgstr ""
1306
 
1307
- #: core/class-wptouch-pro.php:715
1308
  msgid "We downloaded a fresh copy for you."
1309
  msgstr ""
1310
 
1311
- #: core/class-wptouch-pro.php:716 core/class-wptouch-pro.php:726
1312
  msgid "OK"
1313
  msgstr ""
1314
 
1315
- #: core/class-wptouch-pro.php:719
1316
  msgid ""
1317
  "We were unable to install your WPtouch Pro theme from the Cloud. %s Please "
1318
  "visit %sthis article%s for more information."
1319
  msgstr ""
1320
 
1321
- #: core/class-wptouch-pro.php:722
1322
  msgid "WPtouch Server Issue"
1323
  msgstr ""
1324
 
1325
- #: core/class-wptouch-pro.php:724
1326
  msgid ""
1327
  "Your server setup is preventing WPtouch Pro from installing from the Cloud. "
1328
  "%s Please visit %sthis article%s for more information on how to fix it."
1329
  msgstr ""
1330
 
1331
- #: core/class-wptouch-pro.php:973
1332
  msgid ""
1333
  "This will reset all WPtouch Pro settings.\n"
1334
  "Are you sure?"
1335
  msgstr ""
1336
 
1337
- #: core/class-wptouch-pro.php:974
1338
  msgid ""
1339
  "This will reset all WPtouch Pro settings and delete the wptouch-data "
1340
  "folder.\n"
1341
  "Are you sure?"
1342
  msgstr ""
1343
 
1344
- #: core/class-wptouch-pro.php:975
1345
  msgid ""
1346
  "This will reset all WPtouch Pro settings, delete the wptouch-data folder, "
1347
  "and deactivate the plugin. Are you sure?"
1348
  msgstr ""
1349
 
1350
- #: core/class-wptouch-pro.php:976
1351
  msgid "The item failed to download for this reason: %reason%"
1352
  msgstr ""
1353
 
1354
- #: core/class-wptouch-pro.php:977
1355
  msgid "You are about to reset your license information. Proceed?"
1356
  msgstr ""
1357
 
1358
- #: core/class-wptouch-pro.php:979
1359
  msgid "Upload Failed: Not a valid image."
1360
  msgstr ""
1361
 
1362
- #: core/class-wptouch-pro.php:980
1363
  msgid ""
1364
  "WPtouch is saving settings. Please do not refresh the page while saving."
1365
  msgstr ""
1366
 
1367
- #: core/class-wptouch-pro.php:981
1368
  msgid "Install Themes"
1369
  msgstr ""
1370
 
1371
- #: core/class-wptouch-pro.php:982
1372
  msgid "Install Extensions"
1373
  msgstr ""
1374
 
1375
- #: core/class-wptouch-pro.php:1690
1376
  msgid "%s Changelog"
1377
  msgstr ""
1378
 
1379
- #: core/class-wptouch-pro.php:3107
1380
  msgid "Directory Problem"
1381
  msgstr ""
1382
 
1383
- #: core/class-wptouch-pro.php:3108
1384
  msgid "One or more required directories could not be created"
1385
  msgstr ""
1386
 
@@ -2510,9 +2527,9 @@ msgstr ""
2510
  msgid "WPtouch Mobile Plugin"
2511
  msgstr ""
2512
 
2513
- #. #-#-#-#-# wptouch.pot (WPtouch Mobile Plugin 4.3.16) #-#-#-#-#
2514
  #. Plugin URI of the plugin/theme
2515
- #. #-#-#-#-# wptouch.pot (WPtouch Mobile Plugin 4.3.16) #-#-#-#-#
2516
  #. Author URI of the plugin/theme
2517
  msgid "http://www.wptouch.com/"
2518
  msgstr ""
2
  # This file is distributed under the same license as the WPtouch Mobile Plugin package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WPtouch Mobile Plugin 4.3.18\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wptouch\n"
7
+ "POT-Creation-Date: 2017-05-31 18:57:10+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
377
  #: admin/pages/custom/wptouch-admin-wizard.php:179
378
  #: admin/settings/html/theme-browser-item-detail.php:52
379
  #: admin/settings/html/updates-available.php:35
380
+ #: admin/settings/html/updates-available.php:71 core/class-wptouch-pro.php:990
381
  msgid "Download"
382
  msgstr ""
383
 
387
  #: admin/settings/html/installed_icon_sets_ajax.php:13
388
  #: admin/settings/html/installed_icon_sets_ajax.php:26
389
  #: admin/settings/html/theme-browser-item.php:12
390
+ #: core/class-wptouch-pro.php:989
391
  msgid "Installed"
392
  msgstr ""
393
 
684
  msgstr ""
685
 
686
  #: admin/pages/wptouch-admin-general-settings.php:239
687
+ #: admin/pages/wptouch-admin-general-settings.php:648
688
  msgid "None"
689
  msgstr ""
690
 
735
  msgid "Filters out shortcodes from displaying when WPtouch Pro is active."
736
  msgstr ""
737
 
738
+ #: admin/pages/wptouch-admin-general-settings.php:347
739
+ msgctxt ""
740
+ "caching services like Varnish can sometimes cause issues with WPtouch."
741
+ msgid "Caching"
742
+ msgstr ""
743
+
744
+ #: admin/pages/wptouch-admin-general-settings.php:353
745
+ msgid "Stop sending \"no cache\" request headers for mobile site."
746
+ msgstr ""
747
+
748
+ #: admin/pages/wptouch-admin-general-settings.php:354
749
+ msgid ""
750
+ "By default WPtouch requests that mobile pages are not cached. This helps "
751
+ "prevent the mobile site from being served to desktop users and the desktop "
752
+ "site from being served to mobile users."
753
+ msgstr ""
754
+
755
+ #: admin/pages/wptouch-admin-general-settings.php:368
756
  msgid "Active Plugins"
757
  msgstr ""
758
 
759
+ #: admin/pages/wptouch-admin-general-settings.php:379
760
  msgid ""
761
  "Attempts to disable plugins for mobile visitors. Some plugins don‘t support "
762
  "this feature due to the way they load in WordPress."
763
  msgstr ""
764
 
765
+ #: admin/pages/wptouch-admin-general-settings.php:391
766
  msgid "Mobile Devices & Browsers"
767
  msgstr ""
768
 
769
+ #: admin/pages/wptouch-admin-general-settings.php:451
770
  msgid "Tablets"
771
  msgstr ""
772
 
773
+ #: admin/pages/wptouch-admin-general-settings.php:509
774
  msgid "Tablet Devices & Browsers"
775
  msgstr ""
776
 
777
+ #: admin/pages/wptouch-admin-general-settings.php:524
778
  msgid ""
779
  "If your theme supports tablets, devices and browsers WPtouch Pro can be "
780
  "enabled for will be listed below."
781
  msgstr ""
782
 
783
+ #: admin/pages/wptouch-admin-general-settings.php:530
784
  msgid "Additional User Agents"
785
  msgstr ""
786
 
787
+ #: admin/pages/wptouch-admin-general-settings.php:536
788
  msgid "User agents to add"
789
  msgstr ""
790
 
791
+ #: admin/pages/wptouch-admin-general-settings.php:537
792
  msgid "You can enter partial i.e. \"nokia\" or full agent strings"
793
  msgstr ""
794
 
795
+ #: admin/pages/wptouch-admin-general-settings.php:554
796
  msgid "Menu Setup"
797
  msgstr ""
798
 
799
+ #: admin/pages/wptouch-admin-general-settings.php:572
800
  msgid "Menu Options"
801
  msgstr ""
802
 
803
+ #: admin/pages/wptouch-admin-general-settings.php:578
804
  msgid "Enable parent items as links"
805
  msgstr ""
806
 
807
+ #: admin/pages/wptouch-admin-general-settings.php:579
808
  msgid "If disabled, parent menu items will only toggle child items."
809
  msgstr ""
810
 
811
+ #: admin/pages/wptouch-admin-general-settings.php:586
812
  msgid "Use menu icons"
813
  msgstr ""
814
 
815
+ #: admin/pages/wptouch-admin-general-settings.php:587
816
  msgid "Adds the ability to associate icons with menu items"
817
  msgstr ""
818
 
819
+ #: admin/pages/wptouch-admin-general-settings.php:598
820
  msgid "Menu Icon Sets"
821
  msgstr ""
822
 
823
+ #: admin/pages/wptouch-admin-general-settings.php:611
824
  #: admin/settings/html/installed_icon_sets_ajax.php:4
825
+ #: core/class-wptouch-pro.php:2185 core/class-wptouch-pro.php:2186
826
  #: core/config.php:54
827
  msgid "Custom Icons"
828
  msgstr ""
829
 
830
+ #: admin/pages/wptouch-admin-general-settings.php:642
831
  msgid "WordPress Pages"
832
  msgstr ""
833
 
834
+ #: admin/pages/wptouch-admin-general-settings.php:660 core/admin-render.php:78
835
  #: core/admin-render.php:110 core/config.php:94
836
  msgid "Customize Theme"
837
  msgstr ""
838
 
839
+ #: admin/pages/wptouch-admin-general-settings.php:726
840
  msgctxt "wptouch-pro"
841
  msgid "Subscribe to updates about new releases and tips"
842
  msgstr ""
939
  msgid "No extensions available"
940
  msgstr ""
941
 
942
+ #: admin/settings/html/image-upload.php:7 core/class-wptouch-pro.php:982
943
  msgid "Upload Complete!"
944
  msgstr ""
945
 
958
  msgstr ""
959
 
960
  #: admin/settings/html/installed_icon_sets_ajax.php:25
961
+ #: core/class-wptouch-pro.php:988
962
  msgid "Installing"
963
  msgstr ""
964
 
965
  #: admin/settings/html/installed_icon_sets_ajax.php:25
966
  #: admin/settings/html/theme-browser-item-detail.php:3
967
+ #: core/admin-extensions.php:365 core/class-wptouch-pro.php:987
968
  msgid "Install"
969
  msgstr ""
970
 
1176
  msgid "Setup Wizard"
1177
  msgstr ""
1178
 
1179
+ #: core/admin-menu.php:49 core/class-wptouch-pro.php:1657
1180
  msgid "Settings"
1181
  msgstr ""
1182
 
1273
  msgid "Reset Settings"
1274
  msgstr ""
1275
 
1276
+ #: core/class-wptouch-pro.php:667
1277
  msgid ""
1278
  "Automatic theme migration from wp-content/uploads/wptouch-data directory "
1279
  "failed. Please manually move these folders to wp-content/wptouch-data: %s"
1280
  msgstr ""
1281
 
1282
+ #: core/class-wptouch-pro.php:686
1283
  msgid ""
1284
  "%sWPtouch: %s was recently disabled, but is still affecting your website and "
1285
  "caching pages.%s"
1286
  msgstr ""
1287
 
1288
+ #: core/class-wptouch-pro.php:687
1289
  msgid ""
1290
  "%sPlease reactivate the plugin, disable page caching, then deactivate the "
1291
  "plugin again to correct this issue.%s"
1292
  msgstr ""
1293
 
1294
+ #: core/class-wptouch-pro.php:688 core/class-wptouch-pro.php:697
1295
  msgid ""
1296
  "%sFixing this issue prevents cached desktop pages being served to mobile "
1297
  "devices and vice-versa.%s"
1298
  msgstr ""
1299
 
1300
+ #: core/class-wptouch-pro.php:689 core/class-wptouch-pro.php:698
1301
  msgid ""
1302
  "%sOnce fixed, this message will be dismissed automatically. Until fixed, "
1303
  "%sWPtouch will not be shown%s to mobile visitors, and cannot be previewed.%s"
1304
  msgstr ""
1305
 
1306
+ #: core/class-wptouch-pro.php:696
1307
  msgid "%sWPtouch: %s needs to be configured to work correctly with WPtouch.%s"
1308
  msgstr ""
1309
 
1310
+ #: core/class-wptouch-pro.php:699
1311
  msgid ""
1312
  "%sTo fix the issue, follow our %sstep-by-step setup guide%s on support."
1313
  "wptouch.com%s"
1314
  msgstr ""
1315
 
1316
+ #: core/class-wptouch-pro.php:711
1317
  msgid "WPtouch Repair Required"
1318
  msgstr ""
1319
 
1320
+ #: core/class-wptouch-pro.php:718
1321
  msgid "Your mobile theme was either broken or missing."
1322
  msgstr ""
1323
 
1324
+ #: core/class-wptouch-pro.php:719
1325
  msgid "We downloaded a fresh copy for you."
1326
  msgstr ""
1327
 
1328
+ #: core/class-wptouch-pro.php:720 core/class-wptouch-pro.php:730
1329
  msgid "OK"
1330
  msgstr ""
1331
 
1332
+ #: core/class-wptouch-pro.php:723
1333
  msgid ""
1334
  "We were unable to install your WPtouch Pro theme from the Cloud. %s Please "
1335
  "visit %sthis article%s for more information."
1336
  msgstr ""
1337
 
1338
+ #: core/class-wptouch-pro.php:726
1339
  msgid "WPtouch Server Issue"
1340
  msgstr ""
1341
 
1342
+ #: core/class-wptouch-pro.php:728
1343
  msgid ""
1344
  "Your server setup is preventing WPtouch Pro from installing from the Cloud. "
1345
  "%s Please visit %sthis article%s for more information on how to fix it."
1346
  msgstr ""
1347
 
1348
+ #: core/class-wptouch-pro.php:977
1349
  msgid ""
1350
  "This will reset all WPtouch Pro settings.\n"
1351
  "Are you sure?"
1352
  msgstr ""
1353
 
1354
+ #: core/class-wptouch-pro.php:978
1355
  msgid ""
1356
  "This will reset all WPtouch Pro settings and delete the wptouch-data "
1357
  "folder.\n"
1358
  "Are you sure?"
1359
  msgstr ""
1360
 
1361
+ #: core/class-wptouch-pro.php:979
1362
  msgid ""
1363
  "This will reset all WPtouch Pro settings, delete the wptouch-data folder, "
1364
  "and deactivate the plugin. Are you sure?"
1365
  msgstr ""
1366
 
1367
+ #: core/class-wptouch-pro.php:980
1368
  msgid "The item failed to download for this reason: %reason%"
1369
  msgstr ""
1370
 
1371
+ #: core/class-wptouch-pro.php:981
1372
  msgid "You are about to reset your license information. Proceed?"
1373
  msgstr ""
1374
 
1375
+ #: core/class-wptouch-pro.php:983
1376
  msgid "Upload Failed: Not a valid image."
1377
  msgstr ""
1378
 
1379
+ #: core/class-wptouch-pro.php:984
1380
  msgid ""
1381
  "WPtouch is saving settings. Please do not refresh the page while saving."
1382
  msgstr ""
1383
 
1384
+ #: core/class-wptouch-pro.php:985
1385
  msgid "Install Themes"
1386
  msgstr ""
1387
 
1388
+ #: core/class-wptouch-pro.php:986
1389
  msgid "Install Extensions"
1390
  msgstr ""
1391
 
1392
+ #: core/class-wptouch-pro.php:1694
1393
  msgid "%s Changelog"
1394
  msgstr ""
1395
 
1396
+ #: core/class-wptouch-pro.php:3111
1397
  msgid "Directory Problem"
1398
  msgstr ""
1399
 
1400
+ #: core/class-wptouch-pro.php:3112
1401
  msgid "One or more required directories could not be created"
1402
  msgstr ""
1403
 
2527
  msgid "WPtouch Mobile Plugin"
2528
  msgstr ""
2529
 
2530
+ #. #-#-#-#-# wptouch.pot (WPtouch Mobile Plugin 4.3.18) #-#-#-#-#
2531
  #. Plugin URI of the plugin/theme
2532
+ #. #-#-#-#-# wptouch.pot (WPtouch Mobile Plugin 4.3.18) #-#-#-#-#
2533
  #. Author URI of the plugin/theme
2534
  msgid "http://www.wptouch.com/"
2535
  msgstr ""
readme.txt CHANGED
@@ -2,7 +2,7 @@
2
  Contributors: wptouch, duanestorey, dalemugford, adamdipardo, oxymoron
3
  Tags: wptouch, iphone, ipod, bravenewcode, mobile, mobile-friendly, android, blackberry, smartphone, responsive, design, mobile plugin, ios, mobile theme
4
  Requires at least: 4.2
5
- Stable tag: 4.3.16
6
  Tested up to: 4.7
7
  License: GPLv2
8
 
@@ -33,6 +33,15 @@ For more information visit [WPtouch.com](http://www.wptouch.com/?utm_campaign=wp
33
 
34
  == Changelog ==
35
 
 
 
 
 
 
 
 
 
 
36
  = Version 4.3.16 (April 25, 2017) =
37
 
38
  * Fixed: Bug where backslashes were being stripped from shortcode display.
2
  Contributors: wptouch, duanestorey, dalemugford, adamdipardo, oxymoron
3
  Tags: wptouch, iphone, ipod, bravenewcode, mobile, mobile-friendly, android, blackberry, smartphone, responsive, design, mobile plugin, ios, mobile theme
4
  Requires at least: 4.2
5
+ Stable tag: 4.3.18
6
  Tested up to: 4.7
7
  License: GPLv2
8
 
33
 
34
  == Changelog ==
35
 
36
+ = Version 4.3.18 (May 29, 2017) =
37
+
38
+ * WPML Compatibility: Allows posts to display for chosen language in mobile blog index.
39
+ * Fixed: Bug where password protected pages would not display properly with 'process desktop shortcodes' option enabled.
40
+
41
+ = Version 4.3.17 (May 10, 2017) =
42
+
43
+ * New Feature: Adds default functionality to send no cache request headers when mobile theme is showing. Also adds option in admin to disable this functionality.
44
+
45
  = Version 4.3.16 (April 25, 2017) =
46
 
47
  * Fixed: Bug where backslashes were being stripped from shortcode display.
themes/bauhaus/default/assets/style.css CHANGED
@@ -54,7 +54,7 @@ header a.header-center {
54
  width: 68%;
55
  }
56
 
57
- header h1 {
58
  white-space: nowrap;
59
  overflow: hidden;
60
  text-overflow: ellipsis;
@@ -773,7 +773,7 @@ header img {
773
  opacity: .4;
774
  }
775
 
776
- .post-page-head-area.bauhaus h2.post-title {
777
  color: rgba(0,0,0,.8);
778
  letter-spacing: -.02em;
779
  font-size: 180%;
@@ -1137,7 +1137,7 @@ form#commentform label {
1137
  text-shadow: none;
1138
  }
1139
 
1140
- .dark-post-head .post-page-head-area h2.post-title, .dark-post-head .post-page-head-area select, .dark-post-head .post-page-head-area .archive-text {
1141
  color: rgba(255,255,255,.9);
1142
  }
1143
 
54
  width: 68%;
55
  }
56
 
57
+ .site-title {
58
  white-space: nowrap;
59
  overflow: hidden;
60
  text-overflow: ellipsis;
773
  opacity: .4;
774
  }
775
 
776
+ .post-page-head-area.bauhaus .post-title {
777
  color: rgba(0,0,0,.8);
778
  letter-spacing: -.02em;
779
  font-size: 180%;
1137
  text-shadow: none;
1138
  }
1139
 
1140
+ .dark-post-head .post-page-head-area .post-title, .dark-post-head .post-page-head-area select, .dark-post-head .post-page-head-area .archive-text {
1141
  color: rgba(255,255,255,.9);
1142
  }
1143
 
themes/bauhaus/default/header-bottom.php CHANGED
@@ -34,7 +34,7 @@
34
  <?php if ( foundation_has_logo_image() ) { ?>
35
  <img id="header-logo" src="<?php foundation_the_logo_image(); ?>" alt="logo image" />
36
  <?php } else { ?>
37
- <h1 class="heading-font"><?php wptouch_bloginfo( 'site_title' ); ?></h1>
38
  <?php } ?>
39
  </a>
40
  <div id="menu-toggle" class="menu-btn tappable show-hide-toggle <?php if ( bauhaus_is_menu_position_default() ) { echo 'menu-left'; } else { echo 'menu-right'; } ?>" data-effect-target="menu" data-menu-target="menu" role="button"><!--icon-reorder--></div>
34
  <?php if ( foundation_has_logo_image() ) { ?>
35
  <img id="header-logo" src="<?php foundation_the_logo_image(); ?>" alt="logo image" />
36
  <?php } else { ?>
37
+ <div class="heading-font site-title"><?php wptouch_bloginfo( 'site_title' ); ?></div>
38
  <?php } ?>
39
  </a>
40
  <div id="menu-toggle" class="menu-btn tappable show-hide-toggle <?php if ( bauhaus_is_menu_position_default() ) { echo 'menu-left'; } else { echo 'menu-right'; } ?>" data-effect-target="menu" data-menu-target="menu" role="button"><!--icon-reorder--></div>
themes/bauhaus/default/page-content.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="<?php wptouch_post_classes(); ?>">
2
  <div class="post-page-head-area bauhaus">
3
- <h2 class="post-title heading-font"><?php the_title(); ?></h2>
4
  <?php if ( bauhaus_should_show_thumbnail() && wptouch_has_post_thumbnail() ) { ?>
5
  <div class="post-page-thumbnail">
6
  <?php the_post_thumbnail('large', array( 'class' => 'post-thumbnail wp-post-image' ) ); ?>
@@ -10,4 +10,4 @@
10
  <div class="post-page-content">
11
  <?php wptouch_the_content(); ?>
12
  </div>
13
- </div>
1
  <div class="<?php wptouch_post_classes(); ?>">
2
  <div class="post-page-head-area bauhaus">
3
+ <h1 class="post-title heading-font"><?php the_title(); ?></h1>
4
  <?php if ( bauhaus_should_show_thumbnail() && wptouch_has_post_thumbnail() ) { ?>
5
  <div class="post-page-thumbnail">
6
  <?php the_post_thumbnail('large', array( 'class' => 'post-thumbnail wp-post-image' ) ); ?>
10
  <div class="post-page-content">
11
  <?php wptouch_the_content(); ?>
12
  </div>
13
+ </div>
themes/bauhaus/default/single.php CHANGED
@@ -16,7 +16,7 @@
16
  <?php if ( comments_open() || wptouch_have_comments() ) comments_number( __( 'no comments', 'wptouch-pro' ), __( '1 comment', 'wptouch-pro' ), __( '% comments', 'wptouch-pro' ) ); ?>
17
  <?php } ?>
18
  </span>
19
- <h2 class="post-title heading-font"><?php wptouch_the_title(); ?></h2>
20
  <?php if ( bauhaus_should_show_author() ) { ?>
21
  <span class="post-author"><?php the_author(); ?></span>
22
  <?php } ?>
@@ -56,4 +56,4 @@
56
  </div>
57
  <?php } ?>
58
 
59
- <?php get_footer(); ?>
16
  <?php if ( comments_open() || wptouch_have_comments() ) comments_number( __( 'no comments', 'wptouch-pro' ), __( '1 comment', 'wptouch-pro' ), __( '% comments', 'wptouch-pro' ) ); ?>
17
  <?php } ?>
18
  </span>
19
+ <h1 class="post-title heading-font"><?php wptouch_the_title(); ?></h1>
20
  <?php if ( bauhaus_should_show_author() ) { ?>
21
  <span class="post-author"><?php the_author(); ?></span>
22
  <?php } ?>
56
  </div>
57
  <?php } ?>
58
 
59
+ <?php get_footer(); ?>
themes/bauhaus/default/style.css CHANGED
@@ -1 +1 @@
1
- body{font-family:"Helvetica Neue",Helvetica,Geneva,Arial,sans-serif;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{letter-spacing:-.02em}h1,h2,h3{font-weight:300}h4,h5,h6{font-weight:400}.page-wrapper{left:0;right:0}header a,header div{color:rgba(0,0,0,.9)}header{position:relative;opacity:1;overflow:hidden;height:54px;z-index:4}header a.header-center{display:block;margin-left:auto;margin-right:auto;text-align:center;width:68%}header h1{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0;font-size:150%;font-weight:400;font-style:normal;line-height:2.25}header img{max-height:44px;position:relative;max-width:100%}.landscape header img,.portrait header img{top:4px}.drop-down #menu{display:none;position:absolute;top:54px;z-index:3;right:0;left:0}#menu-toggle{position:absolute;bottom:0;left:0;right:auto}#menu-toggle.menu-right{position:absolute;bottom:0;left:auto;right:0}#menu-toggle:after{content:"\e80a";display:block;font:110% wptouch-icons,sans-serif;padding:18px}#search-toggle{position:absolute;bottom:0;left:0;right:auto}#search-toggle.search-right{position:absolute;bottom:0;left:auto;right:0}#search-toggle:after{content:"\e809";display:block;font:110% wptouch-icons,sans-serif;padding:18px}#menu-toggle.touched:after,#search-toggle.touched:after{color:rgba(0,0,0,.3)}.login-link{padding-left:12px}.login-link i{margin-right:5px}#wptouch-search-inner{background-color:rgba(0,0,0,.1);text-align:center;padding:5px}#wptouch-search-inner input[type=text]{width:70%;-webkit-appearance:none;padding:4px;background-color:rgba(255,255,255,.9);font-size:90%;border-style:none;border-radius:2px}#wptouch-search-inner input[type=text]:focus{background-color:#fff}#wptouch-search-inner input[type=submit]{border-radius:2px;border:1px solid rgba(0,0,0,.2);padding:1px 10px 4px;-webkit-appearance:none;background-color:rgba(255,255,255,.1);color:rgba(0,0,0,.8);font-size:95%;vertical-align:bottom}#search-dropper{overflow:hidden;max-height:0;-webkit-transition:max-height 330ms ease-in-out}#search-dropper.toggled{max-height:60px}.touched{background-color:rgba(0,0,0,.1)}.page-wrapper .wptouch-custom-showcase{margin:-1px auto -10px}.list-view .flickity-page-dots{margin-bottom:35px}.list-view .flickity-page-dots .dot{width:15px;height:2px;margin-right:0;margin-left:0;border-radius:0;background-color:#fff;opacity:.4}.list-view .flickity-page-dots .dot.is-selected{opacity:1}.list-view .carousel.list-carousel{box-shadow:inset rgba(0,0,0,.1) 0 0 24px;height:220px;margin-top:0;margin-bottom:0;position:relative;visibility:hidden}.list-view .carousel.list-carousel.flickity-enabled{visibility:visible}.list-view .list-carousel .carousel-cell{height:100%;width:100%;max-width:none!important;overflow:hidden}.list-view .list-carousel .carousel-cell img{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);min-width:120%;max-width:120%;min-height:100%;width:auto;height:auto;z-index:-1;overflow:hidden}.list-view .carousel.list-carousel h2{text-shadow:rgba(0,0,0,.6) 0 0 10px;position:absolute;bottom:35%;font-size:180%;font-weight:600;width:90%;color:#fff;text-align:center;margin-left:auto;margin-right:auto;overflow:hidden;text-overflow:ellipsis;left:0;right:0;line-height:150%}.list-view .list-carousel .post-meta{text-shadow:rgba(0,0,0,.6) 0 0 10px;position:absolute;font-size:75%;font-weight:600;display:inline-block;bottom:25%;z-index:1;color:#fff;margin-left:auto;margin-right:auto;width:90%;right:0;left:0;text-transform:uppercase;text-align:center}.loop-link{display:block;position:relative;min-height:80px;padding-top:10px;padding-bottom:10px}.loop-link i.arrow{font-size:34px;position:absolute;right:3%;top:50%;margin-top:-18px}.loop-link .post-meta{color:rgba(0,0,0,.5);display:block;font-size:70%;margin-left:88px;padding-top:10px;text-transform:uppercase}.loop-link .post-meta.comments{margin-left:88px}#content .loop-link h2{display:inline-block;width:65%;font-size:130%;line-height:130%;margin:0 0 0 4px;padding-bottom:10px;overflow:hidden;font-weight:400;font-style:normal;padding-top:10px}.loop-link img.post-thumbnail{width:64px;height:64px;margin:12px 10px 0;z-index:1;float:left}.loop-link .date-circle,.related .date-circle{position:relative;font-size:215%;line-height:110%;display:block;float:left;margin:12px 10px 0;width:62px;height:48px;border:1px solid rgba(0,0,0,.1);z-index:1;padding-top:14px;text-align:center;overflow:hidden;color:rgba(0,0,0,.7)}.related .date-circle{font-size:175%;height:36px;float:none;margin:0;line-height:100%;position:absolute;top:3px;width:50px}.loop-link .date-circle .month,.related .date-circle .month{text-transform:uppercase;font-size:40%;position:absolute;top:-1px;right:0;left:0;letter-spacing:-1px}.loop-link .date-circle .day,.related .date-circle .day{position:absolute;top:18px;right:0;left:0;font-size:80%;letter-spacing:-1px}.loop-link .bottom-border{border-bottom:1px solid rgba(0,0,0,.15);display:block;position:absolute;bottom:0;left:88px;right:0}.no-thumbs.loop-link .bottom-border{left:40px}#content .no-thumbs.loop-link h2,.no-thumbs.loop-link .post-meta{margin-left:40px}.flickity-view>h2{font-weight:400;padding-left:15px}.carousel{height:350px;margin-top:20px;margin-bottom:40px}.carousel-cell{height:100%;width:90%;max-width:400px}.carousel-cell img{height:auto;min-height:100%;width:92%;min-width:92%;padding:0;margin:0 0 0 20px}.carousel-cell a{max-height:230px;overflow:hidden;display:block}.carousel h2{letter-spacing:-.02em;display:-webkit-box;width:85%;margin-left:20px;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;-webkit-box-orient:vertical}.carousel .post-meta{text-transform:capitalize;font-size:80%;display:inline-block;margin-left:20px;margin-top:5px}.slider-latest-only.blog .wptouch-showcase{-webkit-backdrop-filter:blur(5px);position:absolute;top:55px;z-index:1;left:0;right:0;background-color:rgba(0,0,0,.3);min-height:auto!important;height:50px;margin-bottom:0}.slider-latest-only.blog.wptouch-multiads .wptouch-showcase{height:auto;margin-top:-1px;padding-top:20px}.slider-latest-only.blog header{background-color:rgba(0,0,0,.2)!important;-webkit-backdrop-filter:blur(20px) saturate(150%)!important;margin-bottom:-54px}.slider-latest-only.blog header h1,.slider-latest-only.blog header>.tappable{color:#fff!important}.slider-latest-only.blog #search-dropper{background-color:rgba(0,0,0,.2)!important;-webkit-backdrop-filter:blur(20px) saturate(150%)!important;position:fixed;position:-webkit-sticky;top:54px;z-index:3;right:0;left:0}.slider-latest-only.blog .carousel{margin:0 auto}.slider-latest-only.blog .carousel-cell{height:100%;width:100%;max-width:none!important;position:relative;overflow:hidden}.slider-latest-only.blog .carousel-cell img{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);min-width:200%;min-height:100%;width:auto;height:auto;z-index:-1;overflow:hidden}.slider-latest-only.blog .carousel h2{text-shadow:rgba(0,0,0,.6) 0 0 10px;position:absolute;bottom:130px;font-size:220%;width:90%;color:#fff}.slider-latest-only.blog .carousel .post-meta{text-shadow:rgba(0,0,0,.6) 0 0 6px;color:#fff;position:absolute;bottom:80px;font-size:90%;text-transform:uppercase}.crumb-path{background-image:-webkit-gradient(radial,50% 0,0,50% 0,400,to(rgba(0,0,0,0)),from(rgba(255,255,255,.5)));z-index:2;text-align:left;opacity:.9}.crumb-path p{font-size:80%;padding:6px 12px;margin:0}.crumb-path p span{display:inline-block;width:65%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.landscape .crumb-path p span{width:78%}.ios7 .crumb-path{position:-webkit-sticky;top:0}.sharing-options.style-default.share-top a{font-size:80%;font-weight:400;font-style:normal}.sharing-options+.nav-controls{margin-bottom:-11px}.nav-controls{background-color:rgba(0,0,0,.05);font-size:90%;font-weight:700;border-top:1px solid rgba(0,0,0,.05);border-bottom:1px solid rgba(0,0,0,.05);padding:10px 20px;text-align:center;margin:-1px 0;color:rgba(0,0,0,.7)}.nav-controls div{display:inline-block;width:49%;vertical-align:top;float:left}.nav-controls a:before{margin-right:3px}.nav-controls a{font-weight:400;font-style:normal;display:block}.nav-controls a.prev-post{padding-right:8px}.nav-controls .previous{text-align:left;word-wrap:break-word}.nav-controls .next{text-align:right;word-wrap:break-word;float:right}.nav-controls a:after{margin-left:3px}.post-page-content{color:rgba(0,0,0,.7);font-size:100%;line-height:165%;padding-bottom:50px;padding-left:20px;padding-right:20px;overflow:hidden;word-wrap:break-word}.post-page-content .post-page-thumbnail,.post-page-content .sharing-options{margin-left:-20px;margin-right:-20px}.post-page-content .wp-caption{max-width:300px!important;width:auto!important}.post-page-content img.aligncenter{margin-left:-20px;margin-right:-20px;padding:0!important;border:none!important}.post-page-content table{max-width:100%;overflow:scroll}.post-page-content ol,.post-page-content ul{margin-left:-5px;margin-right:-5px;list-style-type:circle}.post-page-content ol{list-style-type:decimal}.post-page-content li{margin-left:10;margin-right:10;padding-right:0;padding-left:0}.wptouch-shortcode-webapp-mobile,.wptouch-shortcode-webapp-only{margin-top:15px;padding-left:20px;padding-right:20px;overflow:hidden;display:block}.comment-body a,.post-page-content p a{border-bottom-style:dotted;border-bottom-width:1px}.post-page-content .post-thumbnail{margin:0 0 -8px;padding:0;min-width:100%;height:auto}.post-page-head-area .post-author,.post-page-head-area .post-date-comments{font-size:75%;color:rgba(0,0,0,.8);font-weight:600;margin-right:10px;margin-left:10px}.post-page-content .cat-tags{margin-left:20px;margin-right:20px;font-size:90%;margin-top:15px;text-align:left}.post-page-head-area.bauhaus{text-align:center;padding-top:40px;padding-bottom:40px;overflow:hidden;text-shadow:none;text-transform:capitalize;position:relative;overflow:hidden;z-index:0}.post-page-head-area.bauhaus .post-page-thumbnail{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);min-width:200%;min-height:100%;width:auto;height:auto;z-index:-1;overflow:hidden;opacity:.4}.post-page-head-area.bauhaus h2.post-title{color:rgba(0,0,0,.8);letter-spacing:-.02em;font-size:180%;font-weight:400;margin:0!important;padding:10px 12px;word-wrap:break-word}.post-page-content blockquote{border-left:3px solid rgba(0,0,0,.2);margin-left:30px;margin-right:30px;padding-left:10px}.post-page-content .wptouch-showcase{padding:15px 0;margin-right:auto!important;display:block;clear:both;margin-left:0!important}#content .wptouch-showcase,.bottom-content-showcase .wptouch-showcase,.top-content-showcase .wptouch-showcase{margin-left:-15px;margin-right:-15px}.related-posts{padding-top:0;background-color:rgba(255,255,255,.5);padding:15px;border-top:1px solid rgba(0,0,0,.1);color:rgba(0,0,0,.7)}.related-posts ul li{position:relative;list-style-type:none;margin:0 0 20px}.related-posts h3{padding-bottom:10px;margin-top:0;margin-bottom:0;font-size:1.6em}.related-posts li p{margin-top:5px;font-size:95%;line-height:140%}.related-posts li.has-thumb a,.related-posts p{padding-left:60px;display:block;overflow:hidden}.related-posts .has-thumb img{position:absolute;width:50px;height:50px;top:3px;-webkit-border-radius:25px;-moz-border-radius:25px;border-radius:25px}.related-posts li a{display:block;padding-left:62px}.no-com-bubbles #slider .comments-number,.no-com-bubbles .loop-link .comments{display:none}#comments{color:rgba(0,0,0,.7);background-color:rgba(255,255,255,.3);border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(0,0,0,.1);padding-bottom:20px}#respond,#responses{margin-left:15px;margin-right:15px}#respond{padding-top:20px}.comment{margin-left:15px;padding-right:15px}.comment-author,.comment-body,.comment-time{margin-left:65px}.comment-author{font-weight:700;font-size:95%}.comment-time{font-size:75%;color:rgba(0,0,0,.4)}#comments .comment-avatar{width:54px;height:54px;-webkit-border-radius:150px;border-radius:150px;border:1px solid rgba(255,255,255,.5);float:left;right:2px;position:relative;overflow:hidden}#comments .comment-avatar img{width:100%;height:auto}.comment .comment-body{font-size:90%;padding-bottom:15px;word-wrap:break-word}.comment .comment-body a{word-wrap:break-word}.comment .comment-body:after{content:'';display:block;border-bottom:1px solid rgba(0,0,0,.15);margin-right:-15px}#comments blockquote{margin-left:0;padding-left:10px}#comments .load-more-comments-wrap a{font-size:95%}form#commentform input,form#commentform textarea{-webkit-border-radius:2px;border-radius:2px}form#commentform input{margin-right:5px}form#commentform button#submit,form#commentform input#submit{-webkit-border-radius:2px;border-radius:2px}form#commentform label{display:block;margin-bottom:5px}.search span.select-wrap{display:block;margin-top:25px}.search span.select-wrap .search-select{margin-left:auto;margin-right:auto;display:inline-block;background-color:transparent;-webkit-appearance:none;padding:4px;border-style:none;font-size:100%}.search span.select-wrap i.wptouch-icon-caret-down{content:"\e844";font:110% wptouch-icons,sans-serif;position:relative;z-index:2;top:1px;right:2px}.no-results{text-align:center;display:block;margin-top:25px;margin-bottom:25px}.load-more-comments-wrap a,.load-more-link{padding-top:20px;padding-bottom:20px;font-weight:400;font-style:normal}#switch{margin-top:15px;margin-bottom:-15px}.page-wrapper .footer{margin-top:25px;font-size:75%}.footer,a.back-to-top{font-size:80%;color:rgba(0,0,0,.5);font-weight:400;font-style:normal}.circles #slider img.clone{-webkit-border-radius:225px;border-radius:225px}.circles .loop-link .date-circle,.circles .related .date-circle{-webkit-border-radius:100px;border-radius:100px}.circles .loop-link img.post-thumbnail{-webkit-border-radius:150px;border-radius:150px}.landscape.circles #slider img.clone{width:250px;height:250px;-webkit-border-radius:225px;border-radius:225px;left:-30px;top:12px}.landscape.circles #slider .comments-number{left:130px;top:15px}.roundsquares #slider .comments-number{left:85px;top:0}.roundsquares #slider img.clone{left:-85px;-webkit-border-radius:30px;border-radius:30px}.landscape.roundsquares #slider img.clone{left:0}.landscape.roundsquares #slider .comments-number{left:160px}.roundsquares .loop-link .date-circle{-webkit-border-radius:14px;border-radius:14px}.roundsquares .comment-avatar,.roundsquares .loop-link img.post-thumbnail,.roundsquares .related img.wp-post-image{-webkit-border-radius:14px;border-radius:14px}.dark-body .loop-link .post-meta{color:rgba(255,255,255,.4)}.dark-header #menu-toggle.touched:after,.dark-header #search-toggle.touched:after{color:rgba(255,255,255,.3)}.dark-header #wptouch-search-inner input[type=submit]{color:rgba(255,255,255,.9)}.dark-header .loop-link .date-circle,.dark-header .related .date-circle{color:rgba(255,255,255,.8)}.dark-header header a,.dark-header header div{color:rgba(255,255,255,.9)}.dark-body .back-to-top,.dark-body .footer,.dark-body .post-page-content{color:rgba(255,255,255,.8)}.dark-body .loop-link .bottom-border{border-bottom:1px solid rgba(255,255,255,.15)}.dark-body .sharing-options a{border-top-color:rgba(0,0,0,.1);border-bottom-color:rgba(0,0,0,.1);text-shadow:none}.dark-post-head .post-page-head-area .archive-text,.dark-post-head .post-page-head-area h2.post-title,.dark-post-head .post-page-head-area select{color:rgba(255,255,255,.9)}.dark-post-head .post-page-head-area .post-author,.dark-post-head .post-page-head-area .post-date-comments{color:rgba(255,255,255,.75);text-shadow:rgba(0,0,0,.6) 0 0 10px}.dark-body #comments{color:rgba(255,255,255,.7);background-color:rgba(0,0,0,.05);border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(0,0,0,.1)}.dark-body .comment-time{color:rgba(255,255,255,.4)}.dark-body .comment .comment-body:after{border-bottom:1px solid rgba(255,255,255,.1)}.dark-body .comment-avatar{border:1px solid rgba(0,0,0,.1)}.dark-body .related-posts{background-color:rgba(0,0,0,.2)}.dark-post-head form#commentform button#submit{color:rgba(255,255,255,.8)}.ios7.smartphone.web-app-mode #menu{padding-top:20px}.drop-down.ios7.smartphone.web-app-mode #menu{position:fixed;top:74px;overflow:auto;padding-top:0;-webkit-overflow-scrolling:touch}.ios7.web-app-mode.has-fixed header{-webkit-backdrop-filter:blur(20px) saturate(150%);position:-webkit-sticky;padding-top:20px;top:0}.ios7.web-app-mode .crumb-path{position:-webkit-sticky;top:74px}.ios7.web-app-mode #search-dropper{position:-webkit-sticky;top:74px;z-index:3}.off-canvas .wptouch-login-wrap{text-align:center;font-size:70%}.wptouch-menu li.lang-item span{border:none;box-shadow:none;float:left;padding:0 15px}.wptouch-menu li.lang-item img{height:auto;width:auto;top:2px;padding-right:0}.wptouch-menu li.lang-item span:before{content:'';border:none}
1
+ body{font-family:"Helvetica Neue",Helvetica,Geneva,Arial,sans-serif;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{letter-spacing:-.02em}h1,h2,h3{font-weight:300}h4,h5,h6{font-weight:400}.page-wrapper{left:0;right:0}header a,header div{color:rgba(0,0,0,.9)}header{position:relative;opacity:1;overflow:hidden;height:54px;z-index:4}header a.header-center{display:block;margin-left:auto;margin-right:auto;text-align:center;width:68%}.site-title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0;font-size:150%;font-weight:400;font-style:normal;line-height:2.25}header img{max-height:44px;position:relative;max-width:100%}.landscape header img,.portrait header img{top:4px}.drop-down #menu{display:none;position:absolute;top:54px;z-index:3;right:0;left:0}#menu-toggle{position:absolute;bottom:0;left:0;right:auto}#menu-toggle.menu-right{position:absolute;bottom:0;left:auto;right:0}#menu-toggle:after{content:"\e80a";display:block;font:110% wptouch-icons,sans-serif;padding:18px}#search-toggle{position:absolute;bottom:0;left:0;right:auto}#search-toggle.search-right{position:absolute;bottom:0;left:auto;right:0}#search-toggle:after{content:"\e809";display:block;font:110% wptouch-icons,sans-serif;padding:18px}#menu-toggle.touched:after,#search-toggle.touched:after{color:rgba(0,0,0,.3)}.login-link{padding-left:12px}.login-link i{margin-right:5px}#wptouch-search-inner{background-color:rgba(0,0,0,.1);text-align:center;padding:5px}#wptouch-search-inner input[type=text]{width:70%;-webkit-appearance:none;padding:4px;background-color:rgba(255,255,255,.9);font-size:90%;border-style:none;border-radius:2px}#wptouch-search-inner input[type=text]:focus{background-color:#fff}#wptouch-search-inner input[type=submit]{border-radius:2px;border:1px solid rgba(0,0,0,.2);padding:1px 10px 4px;-webkit-appearance:none;background-color:rgba(255,255,255,.1);color:rgba(0,0,0,.8);font-size:95%;vertical-align:bottom}#search-dropper{overflow:hidden;max-height:0;-webkit-transition:max-height 330ms ease-in-out}#search-dropper.toggled{max-height:60px}.touched{background-color:rgba(0,0,0,.1)}.page-wrapper .wptouch-custom-showcase{margin:-1px auto -10px}.list-view .flickity-page-dots{margin-bottom:35px}.list-view .flickity-page-dots .dot{width:15px;height:2px;margin-right:0;margin-left:0;border-radius:0;background-color:#fff;opacity:.4}.list-view .flickity-page-dots .dot.is-selected{opacity:1}.list-view .carousel.list-carousel{box-shadow:inset rgba(0,0,0,.1) 0 0 24px;height:220px;margin-top:0;margin-bottom:0;position:relative;visibility:hidden}.list-view .carousel.list-carousel.flickity-enabled{visibility:visible}.list-view .list-carousel .carousel-cell{height:100%;width:100%;max-width:none!important;overflow:hidden}.list-view .list-carousel .carousel-cell img{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);min-width:120%;max-width:120%;min-height:100%;width:auto;height:auto;z-index:-1;overflow:hidden}.list-view .carousel.list-carousel h2{text-shadow:rgba(0,0,0,.6) 0 0 10px;position:absolute;bottom:35%;font-size:180%;font-weight:600;width:90%;color:#fff;text-align:center;margin-left:auto;margin-right:auto;overflow:hidden;text-overflow:ellipsis;left:0;right:0;line-height:150%}.list-view .list-carousel .post-meta{text-shadow:rgba(0,0,0,.6) 0 0 10px;position:absolute;font-size:75%;font-weight:600;display:inline-block;bottom:25%;z-index:1;color:#fff;margin-left:auto;margin-right:auto;width:90%;right:0;left:0;text-transform:uppercase;text-align:center}.loop-link{display:block;position:relative;min-height:80px;padding-top:10px;padding-bottom:10px}.loop-link i.arrow{font-size:34px;position:absolute;right:3%;top:50%;margin-top:-18px}.loop-link .post-meta{color:rgba(0,0,0,.5);display:block;font-size:70%;margin-left:88px;padding-top:10px;text-transform:uppercase}.loop-link .post-meta.comments{margin-left:88px}#content .loop-link h2{display:inline-block;width:65%;font-size:130%;line-height:130%;margin:0 0 0 4px;padding-bottom:10px;overflow:hidden;font-weight:400;font-style:normal;padding-top:10px}.loop-link img.post-thumbnail{width:64px;height:64px;margin:12px 10px 0;z-index:1;float:left}.loop-link .date-circle,.related .date-circle{position:relative;font-size:215%;line-height:110%;display:block;float:left;margin:12px 10px 0;width:62px;height:48px;border:1px solid rgba(0,0,0,.1);z-index:1;padding-top:14px;text-align:center;overflow:hidden;color:rgba(0,0,0,.7)}.related .date-circle{font-size:175%;height:36px;float:none;margin:0;line-height:100%;position:absolute;top:3px;width:50px}.loop-link .date-circle .month,.related .date-circle .month{text-transform:uppercase;font-size:40%;position:absolute;top:-1px;right:0;left:0;letter-spacing:-1px}.loop-link .date-circle .day,.related .date-circle .day{position:absolute;top:18px;right:0;left:0;font-size:80%;letter-spacing:-1px}.loop-link .bottom-border{border-bottom:1px solid rgba(0,0,0,.15);display:block;position:absolute;bottom:0;left:88px;right:0}.no-thumbs.loop-link .bottom-border{left:40px}#content .no-thumbs.loop-link h2,.no-thumbs.loop-link .post-meta{margin-left:40px}.flickity-view>h2{font-weight:400;padding-left:15px}.carousel{height:350px;margin-top:20px;margin-bottom:40px}.carousel-cell{height:100%;width:90%;max-width:400px}.carousel-cell img{height:auto;min-height:100%;width:92%;min-width:92%;padding:0;margin:0 0 0 20px}.carousel-cell a{max-height:230px;overflow:hidden;display:block}.carousel h2{letter-spacing:-.02em;display:-webkit-box;width:85%;margin-left:20px;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;-webkit-box-orient:vertical}.carousel .post-meta{text-transform:capitalize;font-size:80%;display:inline-block;margin-left:20px;margin-top:5px}.slider-latest-only.blog .wptouch-showcase{-webkit-backdrop-filter:blur(5px);position:absolute;top:55px;z-index:1;left:0;right:0;background-color:rgba(0,0,0,.3);min-height:auto!important;height:50px;margin-bottom:0}.slider-latest-only.blog.wptouch-multiads .wptouch-showcase{height:auto;margin-top:-1px;padding-top:20px}.slider-latest-only.blog header{background-color:rgba(0,0,0,.2)!important;-webkit-backdrop-filter:blur(20px) saturate(150%)!important;margin-bottom:-54px}.slider-latest-only.blog header h1,.slider-latest-only.blog header>.tappable{color:#fff!important}.slider-latest-only.blog #search-dropper{background-color:rgba(0,0,0,.2)!important;-webkit-backdrop-filter:blur(20px) saturate(150%)!important;position:fixed;position:-webkit-sticky;top:54px;z-index:3;right:0;left:0}.slider-latest-only.blog .carousel{margin:0 auto}.slider-latest-only.blog .carousel-cell{height:100%;width:100%;max-width:none!important;position:relative;overflow:hidden}.slider-latest-only.blog .carousel-cell img{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);min-width:200%;min-height:100%;width:auto;height:auto;z-index:-1;overflow:hidden}.slider-latest-only.blog .carousel h2{text-shadow:rgba(0,0,0,.6) 0 0 10px;position:absolute;bottom:130px;font-size:220%;width:90%;color:#fff}.slider-latest-only.blog .carousel .post-meta{text-shadow:rgba(0,0,0,.6) 0 0 6px;color:#fff;position:absolute;bottom:80px;font-size:90%;text-transform:uppercase}.crumb-path{background-image:-webkit-gradient(radial,50% 0,0,50% 0,400,to(rgba(0,0,0,0)),from(rgba(255,255,255,.5)));z-index:2;text-align:left;opacity:.9}.crumb-path p{font-size:80%;padding:6px 12px;margin:0}.crumb-path p span{display:inline-block;width:65%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.landscape .crumb-path p span{width:78%}.ios7 .crumb-path{position:-webkit-sticky;top:0}.sharing-options.style-default.share-top a{font-size:80%;font-weight:400;font-style:normal}.sharing-options+.nav-controls{margin-bottom:-11px}.nav-controls{background-color:rgba(0,0,0,.05);font-size:90%;font-weight:700;border-top:1px solid rgba(0,0,0,.05);border-bottom:1px solid rgba(0,0,0,.05);padding:10px 20px;text-align:center;margin:-1px 0;color:rgba(0,0,0,.7)}.nav-controls div{display:inline-block;width:49%;vertical-align:top;float:left}.nav-controls a:before{margin-right:3px}.nav-controls a{font-weight:400;font-style:normal;display:block}.nav-controls a.prev-post{padding-right:8px}.nav-controls .previous{text-align:left;word-wrap:break-word}.nav-controls .next{text-align:right;word-wrap:break-word;float:right}.nav-controls a:after{margin-left:3px}.post-page-content{color:rgba(0,0,0,.7);font-size:100%;line-height:165%;padding-bottom:50px;padding-left:20px;padding-right:20px;overflow:hidden;word-wrap:break-word}.post-page-content .post-page-thumbnail,.post-page-content .sharing-options{margin-left:-20px;margin-right:-20px}.post-page-content .wp-caption{max-width:300px!important;width:auto!important}.post-page-content img.aligncenter{margin-left:-20px;margin-right:-20px;padding:0!important;border:none!important}.post-page-content table{max-width:100%;overflow:scroll}.post-page-content ol,.post-page-content ul{margin-left:-5px;margin-right:-5px;list-style-type:circle}.post-page-content ol{list-style-type:decimal}.post-page-content li{margin-left:10;margin-right:10;padding-right:0;padding-left:0}.wptouch-shortcode-webapp-mobile,.wptouch-shortcode-webapp-only{margin-top:15px;padding-left:20px;padding-right:20px;overflow:hidden;display:block}.comment-body a,.post-page-content p a{border-bottom-style:dotted;border-bottom-width:1px}.post-page-content .post-thumbnail{margin:0 0 -8px;padding:0;min-width:100%;height:auto}.post-page-head-area .post-author,.post-page-head-area .post-date-comments{font-size:75%;color:rgba(0,0,0,.8);font-weight:600;margin-right:10px;margin-left:10px}.post-page-content .cat-tags{margin-left:20px;margin-right:20px;font-size:90%;margin-top:15px;text-align:left}.post-page-head-area.bauhaus{text-align:center;padding-top:40px;padding-bottom:40px;overflow:hidden;text-shadow:none;text-transform:capitalize;position:relative;overflow:hidden;z-index:0}.post-page-head-area.bauhaus .post-page-thumbnail{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);min-width:200%;min-height:100%;width:auto;height:auto;z-index:-1;overflow:hidden;opacity:.4}.post-page-head-area.bauhaus .post-title{color:rgba(0,0,0,.8);letter-spacing:-.02em;font-size:180%;font-weight:400;margin:0!important;padding:10px 12px;word-wrap:break-word}.post-page-content blockquote{border-left:3px solid rgba(0,0,0,.2);margin-left:30px;margin-right:30px;padding-left:10px}.post-page-content .wptouch-showcase{padding:15px 0;margin-right:auto!important;display:block;clear:both;margin-left:0!important}#content .wptouch-showcase,.bottom-content-showcase .wptouch-showcase,.top-content-showcase .wptouch-showcase{margin-left:-15px;margin-right:-15px}.related-posts{padding-top:0;background-color:rgba(255,255,255,.5);padding:15px;border-top:1px solid rgba(0,0,0,.1);color:rgba(0,0,0,.7)}.related-posts ul li{position:relative;list-style-type:none;margin:0 0 20px}.related-posts h3{padding-bottom:10px;margin-top:0;margin-bottom:0;font-size:1.6em}.related-posts li p{margin-top:5px;font-size:95%;line-height:140%}.related-posts li.has-thumb a,.related-posts p{padding-left:60px;display:block;overflow:hidden}.related-posts .has-thumb img{position:absolute;width:50px;height:50px;top:3px;-webkit-border-radius:25px;-moz-border-radius:25px;border-radius:25px}.related-posts li a{display:block;padding-left:62px}.no-com-bubbles #slider .comments-number,.no-com-bubbles .loop-link .comments{display:none}#comments{color:rgba(0,0,0,.7);background-color:rgba(255,255,255,.3);border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(0,0,0,.1);padding-bottom:20px}#respond,#responses{margin-left:15px;margin-right:15px}#respond{padding-top:20px}.comment{margin-left:15px;padding-right:15px}.comment-author,.comment-body,.comment-time{margin-left:65px}.comment-author{font-weight:700;font-size:95%}.comment-time{font-size:75%;color:rgba(0,0,0,.4)}#comments .comment-avatar{width:54px;height:54px;-webkit-border-radius:150px;border-radius:150px;border:1px solid rgba(255,255,255,.5);float:left;right:2px;position:relative;overflow:hidden}#comments .comment-avatar img{width:100%;height:auto}.comment .comment-body{font-size:90%;padding-bottom:15px;word-wrap:break-word}.comment .comment-body a{word-wrap:break-word}.comment .comment-body:after{content:'';display:block;border-bottom:1px solid rgba(0,0,0,.15);margin-right:-15px}#comments blockquote{margin-left:0;padding-left:10px}#comments .load-more-comments-wrap a{font-size:95%}form#commentform input,form#commentform textarea{-webkit-border-radius:2px;border-radius:2px}form#commentform input{margin-right:5px}form#commentform button#submit,form#commentform input#submit{-webkit-border-radius:2px;border-radius:2px}form#commentform label{display:block;margin-bottom:5px}.search span.select-wrap{display:block;margin-top:25px}.search span.select-wrap .search-select{margin-left:auto;margin-right:auto;display:inline-block;background-color:transparent;-webkit-appearance:none;padding:4px;border-style:none;font-size:100%}.search span.select-wrap i.wptouch-icon-caret-down{content:"\e844";font:110% wptouch-icons,sans-serif;position:relative;z-index:2;top:1px;right:2px}.no-results{text-align:center;display:block;margin-top:25px;margin-bottom:25px}.load-more-comments-wrap a,.load-more-link{padding-top:20px;padding-bottom:20px;font-weight:400;font-style:normal}#switch{margin-top:15px;margin-bottom:-15px}.page-wrapper .footer{margin-top:25px;font-size:75%}.footer,a.back-to-top{font-size:80%;color:rgba(0,0,0,.5);font-weight:400;font-style:normal}.circles #slider img.clone{-webkit-border-radius:225px;border-radius:225px}.circles .loop-link .date-circle,.circles .related .date-circle{-webkit-border-radius:100px;border-radius:100px}.circles .loop-link img.post-thumbnail{-webkit-border-radius:150px;border-radius:150px}.landscape.circles #slider img.clone{width:250px;height:250px;-webkit-border-radius:225px;border-radius:225px;left:-30px;top:12px}.landscape.circles #slider .comments-number{left:130px;top:15px}.roundsquares #slider .comments-number{left:85px;top:0}.roundsquares #slider img.clone{left:-85px;-webkit-border-radius:30px;border-radius:30px}.landscape.roundsquares #slider img.clone{left:0}.landscape.roundsquares #slider .comments-number{left:160px}.roundsquares .loop-link .date-circle{-webkit-border-radius:14px;border-radius:14px}.roundsquares .comment-avatar,.roundsquares .loop-link img.post-thumbnail,.roundsquares .related img.wp-post-image{-webkit-border-radius:14px;border-radius:14px}.dark-body .loop-link .post-meta{color:rgba(255,255,255,.4)}.dark-header #menu-toggle.touched:after,.dark-header #search-toggle.touched:after{color:rgba(255,255,255,.3)}.dark-header #wptouch-search-inner input[type=submit]{color:rgba(255,255,255,.9)}.dark-header .loop-link .date-circle,.dark-header .related .date-circle{color:rgba(255,255,255,.8)}.dark-header header a,.dark-header header div{color:rgba(255,255,255,.9)}.dark-body .back-to-top,.dark-body .footer,.dark-body .post-page-content{color:rgba(255,255,255,.8)}.dark-body .loop-link .bottom-border{border-bottom:1px solid rgba(255,255,255,.15)}.dark-body .sharing-options a{border-top-color:rgba(0,0,0,.1);border-bottom-color:rgba(0,0,0,.1);text-shadow:none}.dark-post-head .post-page-head-area .archive-text,.dark-post-head .post-page-head-area .post-title,.dark-post-head .post-page-head-area select{color:rgba(255,255,255,.9)}.dark-post-head .post-page-head-area .post-author,.dark-post-head .post-page-head-area .post-date-comments{color:rgba(255,255,255,.75);text-shadow:rgba(0,0,0,.6) 0 0 10px}.dark-body #comments{color:rgba(255,255,255,.7);background-color:rgba(0,0,0,.05);border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(0,0,0,.1)}.dark-body .comment-time{color:rgba(255,255,255,.4)}.dark-body .comment .comment-body:after{border-bottom:1px solid rgba(255,255,255,.1)}.dark-body .comment-avatar{border:1px solid rgba(0,0,0,.1)}.dark-body .related-posts{background-color:rgba(0,0,0,.2)}.dark-post-head form#commentform button#submit{color:rgba(255,255,255,.8)}.ios7.smartphone.web-app-mode #menu{padding-top:20px}.drop-down.ios7.smartphone.web-app-mode #menu{position:fixed;top:74px;overflow:auto;padding-top:0;-webkit-overflow-scrolling:touch}.ios7.web-app-mode.has-fixed header{-webkit-backdrop-filter:blur(20px) saturate(150%);position:-webkit-sticky;padding-top:20px;top:0}.ios7.web-app-mode .crumb-path{position:-webkit-sticky;top:74px}.ios7.web-app-mode #search-dropper{position:-webkit-sticky;top:74px;z-index:3}.off-canvas .wptouch-login-wrap{text-align:center;font-size:70%}.wptouch-menu li.lang-item span{border:none;box-shadow:none;float:left;padding:0 15px}.wptouch-menu li.lang-item img{height:auto;width:auto;top:2px;padding-right:0}.wptouch-menu li.lang-item span:before{content:'';border:none}
themes/bauhaus/readme.txt CHANGED
@@ -1,8 +1,8 @@
1
  Theme Name: Bauhaus
2
  Theme URI: http://www.wptouch.com/themes/bauhaus
3
- Author: BraveNewCode Inc.
4
  Description: Clean, modern, functional design. Great for all types of WordPress sites.
5
- Version: 2.1
6
  Depends on: 4.3
7
  Framework: 2.0
8
  Tags: smartphone
@@ -25,6 +25,14 @@ Bauhaus is one of our more flexible themes, and is designed to easily take on th
25
 
26
  == Changelog ==
27
 
 
 
 
 
 
 
 
 
28
  = Version 2.1 =
29
 
30
  * Speed Improvement: Minify delivered assets.
1
  Theme Name: Bauhaus
2
  Theme URI: http://www.wptouch.com/themes/bauhaus
3
+ Author: WPtouch
4
  Description: Clean, modern, functional design. Great for all types of WordPress sites.
5
+ Version: 2.2.1
6
  Depends on: 4.3
7
  Framework: 2.0
8
  Tags: smartphone
25
 
26
  == Changelog ==
27
 
28
+ = Version 2.2.1 =
29
+
30
+ * Bug Fix: Addressed issue with titles not showing when header color was set to dark.
31
+
32
+ = Version 2.2 =
33
+
34
+ * SEO Improvement: Update page and post titles to <h1> tags. Change site title away from <h1> tag.
35
+
36
  = Version 2.1 =
37
 
38
  * Speed Improvement: Minify delivered assets.
themes/bauhaus/root-functions.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- define( 'BAUHAUS_THEME_VERSION', '2.1' );
4
  define( 'BAUHAUS_SETTING_DOMAIN', 'bauhaus' );
5
  define( 'BAUHAUS_DIR', wptouch_get_bloginfo( 'theme_root_directory' ) );
6
  define( 'BAUHAUS_URL', wptouch_get_bloginfo( 'theme_parent_url' ) );
1
  <?php
2
 
3
+ define( 'BAUHAUS_THEME_VERSION', '2.2.1' );
4
  define( 'BAUHAUS_SETTING_DOMAIN', 'bauhaus' );
5
  define( 'BAUHAUS_DIR', wptouch_get_bloginfo( 'theme_root_directory' ) );
6
  define( 'BAUHAUS_URL', wptouch_get_bloginfo( 'theme_parent_url' ) );
wptouch.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: WPtouch Mobile Plugin
4
  Plugin URI: http://www.wptouch.com/
5
- Version: 4.3.16
6
  Description: Make a beautiful mobile-friendly version of your website with just a few clicks.
7
  Author: WPtouch
8
  Author URI: http://www.wptouch.com/
@@ -14,7 +14,7 @@
14
 
15
  function wptouch_create_four_object() {
16
  if ( !defined( 'WPTOUCH_IS_PRO' ) ) {
17
- define( 'WPTOUCH_VERSION', '4.3.16' );
18
 
19
  define( 'WPTOUCH_BASE_NAME', basename( __FILE__, '.php' ) . '.php' );
20
  define( 'WPTOUCH_DIR', WP_PLUGIN_DIR . DIRECTORY_SEPARATOR . basename( __FILE__, '.php' ) );
2
  /*
3
  Plugin Name: WPtouch Mobile Plugin
4
  Plugin URI: http://www.wptouch.com/
5
+ Version: 4.3.18
6
  Description: Make a beautiful mobile-friendly version of your website with just a few clicks.
7
  Author: WPtouch
8
  Author URI: http://www.wptouch.com/
14
 
15
  function wptouch_create_four_object() {
16
  if ( !defined( 'WPTOUCH_IS_PRO' ) ) {
17
+ define( 'WPTOUCH_VERSION', '4.3.18' );
18
 
19
  define( 'WPTOUCH_BASE_NAME', basename( __FILE__, '.php' ) . '.php' );
20
  define( 'WPTOUCH_DIR', WP_PLUGIN_DIR . DIRECTORY_SEPARATOR . basename( __FILE__, '.php' ) );