How to Disable Members Function?

I upgraded to 4.0.1 15min ago. Unfortunately I can not find an option to disable the members function. I live in the EU and because of GDPR and other reasons I do not want this possibility to exists at all for my blog (for now). Simply do not show the link to the portal is not enough, I explicitly want the function to be disabled.

14 Likes

Have the same issue. I have ended up removing the blocks that render the subscriptions controls in the template.

I removed the blocks from theme that resulted in the signin/signout buttons as well as the subscription snippets, but I can’t seem to figure out how to remove this new JS file that loads. I confirmed I disabled this portal button in the Admin panel, but the associated JS still loads.

<script defer src="https://unpkg.com/@tryghost/portal@~1.0.0/umd/portal.min.js" data-ghost="[redacted]"></script>

If you’re not loading any other scripts from unpkg.com, one (bad) way would be to set a custom Content-Security-Policy header in your reverse proxy setup, and not include unpkg.com. CSP docs: Content Security Policy (CSP) - HTTP | MDN

Edit: Note that this will not remove the <script ... line from the final HTML page, but prevent that script from being loaded at runtime.

But, this is a very hacky way to achieve this. Ideally, there should be a way to disable members completely. Vote for that idea here: Add toggle to turn off members feature

Done

1 Like

Hey @ngreve
I’m currently moving to Ghost, I also live in the EU and I wasn’t aware that the latest version might not be GDPR compliant.
In what way does the members function fail to meet the GDPR requirements ?
Thanks a lot

I’m reverting back to 3.x This update has been a nightmare

1 Like

I am not a lawyer, I am just concerned, but this is actually the point. I mentioned GDPR because it’s a topic I just don’t want to get involved with, because its quite confusing and I don’t want to do anything wrong.
When it comes to the member feature of Ghost, I don’t see a feature to handle a user requests which want their data to be handed out to them. So, before I am not feeling confident about my knowledge about GDPR, saving user data, doing (potentially) money transactions and not having a possibility to hand over those data to the user, I will not use a feature like this. And tbh, I simply do not have trust in the stability of the feature, but that’s another topic. Currently testing other CMS, which do not have any of that member stuff. There is just to much other stuff that bugs me with 4.0.

3 Likes

Depending on your interpretation of GDPR you’re not allowed to transfer personal data to third parties. But including an external script, you’re actually doing this. You somehow make the user access this resource and with that make him transmit his IP address (which is a personal date in GDPR) without giving him a chance to deny this. You cannot heal this by just stating this fact in your data protection policy, that’s too late, because the user’s personal data is already transmitted.

So, most importantly the script must be hosted locally.

And it would be nice to be able to disable the membership feature to not give the users a way to give you their data, because even if you don’t want their data, if you have it, you must comply with GDPR with all the strings attached.

2 Likes

Looks like the only way to disable autoloading of that portal script is to remove {{ghost_head}} from the default.hbs. But that will also disable all SEO functionality among other things. If this bug (and I consider force injecting an unneeded script on my site a bug) won’t be fixed, I will most likely just replace {{ghost_head}} in my theme with a custom header. I already tried it, and it sort of works, but Ghost throws a soft error at start up:

The usage of {{meta_description}} in the HTML head tag is no longer required because Ghost outputs this for you automatically in {{ghost_head}}.

…which is ironic :slight_smile:

2 Likes

I’m no GDPR expert but it’s not because a script is loaded from elsewhere that you necessarily needs to ask for consent and/or offer a way to disable it:

  • Are we sure personal, identifiable information are transmitted to the hosting service? If the answer is no, then it’s GDPR compliant, and you don’t need to ask for consent. See plausible.io for an example doing precisely that.
  • You don’t need to offer an option to disable everything. You can argue that loading this script is necessary for your website to work – which is the case, even if you don’t use memberships, as it’s built in in Ghost and you don’t have control over it.

Also: GDPR covers a use case when you send users data to a third party for technical purposes, which is arguably what’s going here - if the js hosting service indeed collect personal data. In this case, and for what I understand, you don’t need to offer an option to disable it – asking for consent is enough.

So deep down, the only question that matters is what kind of personal, identifiable data the js hosting service collects. If the answer is “none”, then there’s no GDPR issue here!

2 Likes

asking for consent is enough …

When do you ask for consent? After the fact has already happened or before? How do you do this? And as I mentioned: Your IP address in combination with the time and date is considered personal information by German authorities, because it can be traced back to a person.

It needs to be informed consent and not consent and then inform. And how do you know that the CDN provider is not collecting data, even if it states that. How does the CDN provider pay for its bills? Probably not by letting the opportunity slip to sell your data.

You ask for consent the same way everybody does: with a banner/a modal.

IP address is considered a personal information not just in Germany, but by the GDPR in general. If no (full) IP adresses are collected, then it’s fine. I may also be the case that if the IP address is collected for technical purpose by a data vendor (aka a subcontractor), you only need to inform, not to ask for consent.

And regarding the CDN hosting service, if it says it doesn’t collect personal information but it actually does it, it’s a matter of breaking the law. It’s a criminal behavior and it goes far beyond GDPR compliance.

The technical reason so to say is: I use this software, it does the thing and I cannot change it? I would argue: then don’t use it.

Furthermore if you state: “[…] even if you don’t use memberships”, there is no technical reason from my point of view.

Or you could just block nginx to send calls to unpkg.com and still use the product.

More generally, there are plenty of GDPR guides over there to make sure wether loading this script is compliant or not, instead of relying on interpretations. And I don’t even mention checking unpkg.com data policy – because if it doesn’t collect any personal information, there is literally no reason to have this conversation anymore as the problem is solved.

Have a good day

1 Like

Can you please NOT post the same question all over the place in topics not related with the question you’re asking? Thanks.

According to the pinned topic, spam is forbidden: Welcome to the Ghost Community

2 Likes

Sorry @simardcasanova

Then where should I go for the solution?

It is very difficult for me to solve this and there is no solution on the internet related to this topic.

I understand that you need a solution. Just wait for people to answer the topic you created specifically with your issue.

If I may, can I suggest you delete the multiple messages you posted?

sure, I am deleting.

1 Like

I don’t want to use a CDN. I don’t care if they collect data or not. I want either to disable this script or to host it inside my Ghost installation. I would prefer the first one, but the second option is also fine. To use the CDN for any resource is not an option for me.

P.S. unpkg doesn’t state how they handle personal data at all. But they are hosted by Google and we know their business model :see_no_evil:

2 Likes