Cosign Plugin Not Showing on Settings Page

Using the $settings array I was able to (at one point) see the settings for the cosign plugin on lists/admin/?page=configure
This is no longer true. Any idea why this may have started happening?

Your version: 3.2.1
php version 5.6.16

The activate() method needs to call its parent, as that is where phplist adds the plugins settings.

parent::activate();

Is there an example somewhere?

This is what you need to add at the beginning of your activate method

parent::activate();

Thick skull… :slight_smile: that worked. I thought you were being more abstract. This is new since 3.2x right?

It is new, but not sure when it was added. I think the idea is that settings are displayed only for plugins that are enabled. Previously they were also displayed for installed but disabled plugins.