# Change link signup CTA

**URL:** https://meta.discourse.org/t/change-link-signup-cta/81649
**Category:** Support
**Created:** [27 בפברואר,‏ 2018,‏ 11:44am UTC](https://meta.discourse.org/t/change-link-signup-cta/81649 "2018-02-27T11:44:04Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![Johani](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/johani/32/176920_2.png) [@Johani](https://meta.discourse.org/u/Johani)
#### Post date: [27 בפברואר,‏ 2018,‏ 1:49pm UTC](https://meta.discourse.org/t/change-link-signup-cta/81649/2 "2018-02-27T13:49:30Z")

</div>

**There might be more efficient ways to do this**

but.. one is to modify the template.

The template lives at:

> <https://github.com/discourse/discourse/blob/081959227de72c7473d36618bb02ddea3e42ebcd/app/assets/javascripts/discourse/templates/components/signup-cta.hbs>

And to override it you can change

```plaintext
{{d-button action="showCreateAccount" label="signup_cta.sign_up" icon="check" class="btn-primary"}}

```

To something like:

```plaintext
<a href="https://foo.bar" target="_blank">Sign up</a>

```

In the following:

```plaintext
<script type="text/x-handlebars" data-template-name="components/signup-cta">
	<div class="signup-cta alert alert-info">
		{{#if session.hideSignupCta}}
			<p>
				{{i18n "signup_cta.hidden_for_session"}}
			</p>
		{{else}}
			<p>{{replace-emoji (i18n "signup_cta.intro")}}</p>
			<p>{{replace-emoji (i18n "signup_cta.value_prop")}}</p>

			<div class="buttons">
				{{d-button action="showCreateAccount" label="signup_cta.sign_up" icon="check" class="btn-primary"}}
				{{d-button action="hideForSession" label="signup_cta.hide_session" class="no-icon"}}
				<a {{action "neverShow"}}>{{i18n "signup_cta.hide_forever"}}</a>
			</div>
		{{/if}}
		<div class="clearfix"></div>
	</div>
</script>

```

And then add it to the `</head>` section of a theme.

Let me know if you need more help.

---

_[View the full topic](https://meta.discourse.org/t/change-link-signup-cta/81649)._
