Remove the odd 'back' buttons in the header navigation
authorLaury GvR <laury@gaslightmedia.com>
Tue, 11 Jul 2017 21:13:51 +0000 (17:13 -0400)
committerLaury GvR <laury@gaslightmedia.com>
Tue, 11 Jul 2017 21:13:51 +0000 (17:13 -0400)
header.php
js/app.js
js/custom/pageSetup.js

index ea1d9cc..f2c0b1b 100644 (file)
@@ -4,7 +4,7 @@
     <meta charset="utf-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <title><?php wp_title(); ?></title>
-    <link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri() ; ?>/css/app.css">
+    <link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri() ; ?>/css/app.css?v=0.0.1">
 <!--      <link rel="shortcut icon" href="<?php //echo get_stylesheet_directory_uri(); ?>/favicon.ico">-->
     <link href='//fonts.googleapis.com/css?family=Open+Sans:400,400italic,700' rel='stylesheet' type='text/css'>
     <link href='//fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
index 47c21d1..7dad80e 100644 (file)
--- a/js/app.js
+++ b/js/app.js
@@ -18,4 +18,7 @@ $(document).ready(function () {
         $(this).siblings('ul').toggleClass('open');
     });
     $('.left-off-canvas-list:nth-child(2) li:first-child').hide();
+    $('.title.back.js-generated').each(function() {
+        $(this).hide();
+    });
 });
index 88a19e2..db8b503 100644 (file)
@@ -9,4 +9,7 @@ $(document).ready(function () {
         $(this).siblings('ul').toggleClass('open');
     });
     $('.left-off-canvas-list:nth-child(2) li:first-child').hide();
+    $('.title.back.js-generated').each(function() {
+        $(this).hide();
+    });
 });