mirror of
https://github.com/ascribe/wp-theme
synced 2024-12-22 09:13:38 +01:00
remove signup link from menu
This commit is contained in:
parent
0191d810ac
commit
da5b11a5d2
@ -47,7 +47,7 @@ It requires the following environment variables to be defined, which is done in
|
|||||||
|
|
||||||
variable | description
|
variable | description
|
||||||
---|---
|
---|---
|
||||||
`$ASCRIBE_DEPLOY_SRC` | source of CI build artifacts. On Codeship this is usually just relative to cloned repo path, so `ascribe/`
|
`$ASCRIBE_DEPLOY_SRC` | source of CI build artifacts
|
||||||
`$ASCRIBE_DEPLOY_USER` | user for connecting to deploy server
|
`$ASCRIBE_DEPLOY_USER` | user for connecting to deploy server
|
||||||
`$ASCRIBE_DEPLOY_HOST` | hostname of deploy server
|
`$ASCRIBE_DEPLOY_HOST` | hostname of deploy server
|
||||||
`$ASCRIBE_DEPLOY_PATH` | path to deploy into on the server, should be `PATH_ON_SERVER/wp-content/themes/`
|
`$ASCRIBE_DEPLOY_PATH` | path to deploy into on the server, should be `PATH_ON_SERVER/wp-content/themes/`
|
||||||
|
@ -25,7 +25,7 @@ require 'controller/init.php';
|
|||||||
class="logo phone-only">
|
class="logo phone-only">
|
||||||
</a>
|
</a>
|
||||||
<div class="app-links">
|
<div class="app-links">
|
||||||
<a href="<?php echo $signInLink; ?>">Log In</a> / <a href="<?php echo $signUpLink; ?>">Sign Up</a>
|
<a href="<?php echo $signInLink; ?>">Log In</a>
|
||||||
<img src="<?php echo WPTHEME_TEMPLATE_URL; ?>/images/svg/hamburger.svg" class="phone-only hamburger">
|
<img src="<?php echo WPTHEME_TEMPLATE_URL; ?>/images/svg/hamburger.svg" class="phone-only hamburger">
|
||||||
</div>
|
</div>
|
||||||
<nav class="tour-switcher"><?php wp_nav_menu( array(
|
<nav class="tour-switcher"><?php wp_nav_menu( array(
|
||||||
|
@ -26,7 +26,7 @@ require 'controller/init.php';
|
|||||||
class="logo phone-only">
|
class="logo phone-only">
|
||||||
</a>
|
</a>
|
||||||
<div class="app-links">
|
<div class="app-links">
|
||||||
<a href="<?php echo $signInLink; ?>">Log In</a> / <a href="<?php echo $signUpLink; ?>">Sign Up</a>
|
<a href="<?php echo $signInLink; ?>">Log In</a>
|
||||||
|
|
||||||
<button class="hamburger phone-only">
|
<button class="hamburger phone-only">
|
||||||
<span></span>
|
<span></span>
|
||||||
|
@ -32,7 +32,7 @@ $controller = new Controller();
|
|||||||
</a>
|
</a>
|
||||||
|
|
||||||
<div class="app-links">
|
<div class="app-links">
|
||||||
<a href="<?php echo $signInLink; ?>">Log In</a> / <a href="<?php echo $signUpLink; ?>">Sign Up</a>
|
<a href="<?php echo $signInLink; ?>">Log In</a>
|
||||||
|
|
||||||
<button class="hamburger phone-only">
|
<button class="hamburger phone-only">
|
||||||
<span></span>
|
<span></span>
|
||||||
@ -49,7 +49,6 @@ $controller = new Controller();
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<section class="description">
|
<section class="description">
|
||||||
<h1><?php echo $headerTagline; ?></h1>
|
<h1><?php echo $headerTagline; ?></h1>
|
||||||
<a href="<?php echo $signUpLink; ?>" class="button <?php echo $buttonColour; ?>-overPic"><?php echo $buttonText; ?></a>
|
|
||||||
</section>
|
</section>
|
||||||
<div class="mobile-nav">
|
<div class="mobile-nav">
|
||||||
<?php wp_nav_menu( array( 'theme_location' => 'main-footer-menu', 'container' => false ) ); ?>
|
<?php wp_nav_menu( array( 'theme_location' => 'main-footer-menu', 'container' => false ) ); ?>
|
||||||
|
Loading…
Reference in New Issue
Block a user