Skip to main content

Remove License Nag on Dev Environment

I think the license reminder is a little bit invasive, so I made this function to supress reminder and added it to Snippets plugin.

add_action('init', function () {
    update_option('__fluent_community_pro_license', array(
        'license_key' => 'manually_entered_dummy_key',
        'status'      => 'valid',
        'expires'     => '2099-12-31',
    ));
});