From: Laury GvR Date: Tue, 11 Jul 2017 21:13:51 +0000 (-0400) Subject: Remove the odd 'back' buttons in the header navigation X-Git-Tag: v1.0.0^2~57 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=fcabd37a8791050b3cb8c39244bc46a6b47b16bd;p=WP-Themes%2Ftruenorthgolf.git Remove the odd 'back' buttons in the header navigation --- diff --git a/header.php b/header.php index ea1d9cc..f2c0b1b 100644 --- a/header.php +++ b/header.php @@ -4,7 +4,7 @@ <?php wp_title(); ?> - + diff --git a/js/app.js b/js/app.js index 47c21d1..7dad80e 100644 --- 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(); + }); }); diff --git a/js/custom/pageSetup.js b/js/custom/pageSetup.js index 88a19e2..db8b503 100644 --- a/js/custom/pageSetup.js +++ b/js/custom/pageSetup.js @@ -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(); + }); });