Remove free email field

Hi all,

I would like to disable the free email field sign-up feature across the entire site to prevent users from registering without a paid subscription. Instead, I would prefer the email field to redirect users directly to the subscription portal when clicked.

Could you please guide me on how to remove the free email field and implement this change?

Thank you.

You can set this in the Portal settings by unchecking the ā€˜Freeā€™ option for ā€˜Tiers available at signupā€™.

1 Like

Hi @Raki ā€“ I have already changed that in Settings. However, my issue is the free email signup field (see here)

Thatā€™s coming from your theme. You could hide it with code injection or remove it by editing the theme.

You can try put the following code into ā€˜Site headerā€™(Settingsā€“>Code injectionā€“>Site header):

<!-- remove subscribe form -->
<style>
      .gh-footer-signup .gh-form {
          display: none;
      }
</style>

Hi @Raki I do not want to disable all sign ups. I just want all the ā€œfreeā€ email signup fields to point to the portal window, like shown in the Journal demo theme, see

. So that when a user clicks on it, it takes them to the portal.

To achieve these effects, itā€™s better to directly edit theme code.