Disable the setup wizard in SEOPress

Disable the setup wizard in SEOPress on child sites.

Snippet Type

Execute on Child Sites

Snippet

function sp_enable_setup_wizard( $true ) {
    return false; 
};
add_filter( 'seopress_enable_setup_wizard', 'sp_enable_setup_wizard', 10, 1 );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.