Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.

Skip to main content

Disable Features

Some features in Slim SEO are opinionated. We tried to automate all the SEO works without your touch, but sometimes it's too much. So, you might want to disable some features that you don't like.

To disable features, please go to Settings > Slim SEO, select tab General and you can deselect the features you don't want:

Select the SEO features you want to enable/disable

Alternatively, you can disable the features by adding the following code into your theme's functions.php file:

add_action( 'slim_seo_init', function( $plugin ) {
$plugin->disable( 'redirection' );
$plugin->disable( 'code' );
} );

Each feature has an unique identifier. You need to pass that identifier into the disable method of the plugin object.

These are the list of features that you can disable:

IdentifierFeature
meta_titleMeta title
meta_descriptionMeta description
meta_robotsMeta robots
open_graphOpen Graph
twitter_cardsTwitter Cards
canonical_urlCanonical URL
rel_links"rel" links
settings_postMeta box settings for posts
settings_termMeta box settings for terms
sitemapsSitemap
images_altImage alt text
breadcrumbsBreadcrumbs
notificationPlugin notification
redirectionAuto redirection
feedRSS Feed
schemaSchema
codeHeader / footer code

You can also disable integrations with other plugins if you want. Slim SEO automatically detects and only enable the integrations if these plugins are active.

IdentifierFeature
ampAMP
woocommerceWooCommerce
beaver_builderBeaver Builder
elementorElementor
jetpackJetpack
genesisGenesis
oxygenOxygen builder
lifterlmsLifterLMS
polylangPolylang
web_storiesWebStories
wpmlWPML

Please note that some features require other features to be active. For example: the schema feature requires breadcrumbs. So, when disable a feature, make sure to disable all dependent features.

Learn more about the features' dependencies in the plugin source code.