---
title: Filtro para habilitar / deshabilitar el asistente de configuración de SEOPress
url: "https://www.seopress.org/es/soporte/hooks/filtro-para-habilitar-deshabilitar-el-asistente-de-configuracion-de-seopress/"
lang: es
updated: 2021-09-30
hook_name: seopress_enable_setup_wizard
required_version: 3.5.8
---

# Filtro para habilitar / deshabilitar el asistente de configuración de SEOPress

- **Hook name:** `seopress_enable_setup_wizard`
- **Required version:** 3.5.8

```php
function sp_enable_setup_wizard( $true ) {
	//This will disable SEOPress wizard    
    	return false; 
};
add_filter( 'seopress_enable_setup_wizard', 'sp_enable_setup_wizard', 10, 1 );
```

Source: [https://gist.github.com/wp-seopress/446cffccc29d4941963fbe8a200afa7a](https://gist.github.com/wp-seopress/446cffccc29d4941963fbe8a200afa7a)



