Klebender Footer-Ad

First, make sure that the paid membership group is set to be the user’s primary group if they’re in that group (this can be done at https://yoursite.com/g/{paid_group}). Once that’s done, whenever a user is in that group, they’ll get a nice primary-group-GROUP_NAME class appended to the <body> tag. Now you can do something like

.primary-group-GROUP_NAME .sticky-footer {
    display: none;
}

so that the sticky footer will show up for everyone but those in the paid group.

This should be sufficient for your purposes. But note that there is also this theme component that adds all of the user’s groups as CSS classes to the <body>, which might help in more complex cases.

2 „Gefällt mir“