alleyinteractive / options-importer

Export and import WordPress Options
GNU General Public License v2.0
37 stars 14 forks source link

`options_import_allowlist` filter not working #18

Open quantumleap33 opened 3 years ago

quantumleap33 commented 3 years ago

I am trying to add the Fluent Forms plugin options to the the default import list but it doesn't seem to be working:

function fluentform_options( $options ) { $options[] = 'fluentform'; return $options; } add_filter( 'options_import_whitelist', 'fluentform_options' );

The Fluent Forms settings are still unchecked when importing.

Am I missing something?