Skip to content

Commit

Permalink
Make the email signup CTA a button rather than a text link.
Browse files Browse the repository at this point in the history
For #1495
  • Loading branch information
benlk committed Aug 16, 2019
1 parent 5085afc commit a50a727
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion inc/dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,17 @@ function largo_dashboard_quick_links() {
echo '</ul>';
printf(
'<p>%1$s</p>',
__( 'Developers can also log issues on <a href="https://github.com/INN/Largo">our public github repository</a> and if you would like to be included in our Largo users\' group, <a href="http://eepurl.com/guL4DT">sign up here</a>.', 'largo' ), // link is translatable in case we ever have a signup link in another language.
__( 'Developers can also log issues on <a href="https://github.com/INN/Largo">our public github repository</a>.', 'largo' ),
);
printf(
'<p>%1$s</p>',
__( 'INN maintains a newsletter used to periodically notify Largo users of updates.', 'largo' ),
);
printf(
'<p><a class="button button-primary" href="%1$s">%2$s</a></p>',
// translators: this URL is for the Largo Users Mailchimp signup, and should be localized if necessary.
__( 'http://eepurl.com/guL4DT', 'largo' ),
__( 'Sign up for emails', 'largo' ),
);
echo '</div>';
}
Expand Down

0 comments on commit a50a727

Please sign in to comment.