Install this theme component
Features
The showing of this banner, as well as the built-in Signup CTA at the bottom of a topic requires criteria to be met.
The criteria are:
User is anonymous
User has read at least two topics
User has read for at least two minutes
Topic List Page
Topic Page
Settings
Name
Description
heading text
Join the conversation and sign up today!
subheading text
When you create an account, we’ll remember exactly what you’ve read, so you’ll always come right back to where you’ve left off.
signup text
Sign Up
reminder text
Maybe Later
dismiss text
Never
Hosted by us? Theme components are available to use on our Standard, Business, and Enterprise plans.
Last edited by @JammyDodger 2024-06-15T14:12:39Z
Check document Perform check on document:
17 Likes
hequaye
(Henry Herbert)
December 1, 2021, 6:57pm
2
MAN YOU READ MY MIND!!! Getting ready for a public launch for a community Im working with and this is exactly what I needed!
2 Likes
Thanks for this!
We are using Memberful for signups - would it still work?
1 Like
The signup button transitions user’s to the Discourse sign-up
route. It should be the same as if a user clicked on the normal sign up
button at the top of a Discourse site.
3 Likes
Sherran
(Sherran)
August 15, 2022, 3:43am
5
Is there any way I can preview the component? Have installed and put it into effect, however, can’t see this banner show up on my incognito page.
2 Likes
Rhod
August 18, 2022, 10:24pm
6
Same issue, i can´t see it after “read” 2 minutes and be “anonymous” trough incognito browser.
1 Like
Don
August 19, 2022, 9:10am
7
Hello, It connects to the core signup CTA banner and will show up at the same time than the core CTA appears at the bottom of the topic.
This is the core signup CTA
For this you have to
Jordan Vidrine:
The criteria are:
User is anonymous
User has read at least two topics
User has read for at least two minutes
And I think it won’t show up if the enable signup cta
site setting is disabled.
2 Likes
Has anyone who is using this component changed the styling or positioning of it on their sites?
I would love to hear or see what you’ve done
I have a situation when I have the banner showing but also the Login button in the header navbar
Any way that I can hide that using css in the theme, if the banner class is showing? I tried something like this but it didn’t help
.discourse-signup-banner:not([style*="display: none"]) .auth-buttons {
display: none !important;
}
Edit
I was able to achieve this by doing this instead
body:has(.discourse-signup-banner) .auth-buttons {
display: none !important;
}