• Skip to main content
  • Skip to primary sidebar
  • Business
  • WordPress
  • Security
  • Marketing
  • Publicity
  • Computing
  • Resources
  • Whatevs

Purely Wordpress

Just The Tech, News, and Info We Deem To Post

  • Home
  • About
  • Contact
  • Contribute
You are here: Home / Code Snippets / Disable Genesis SEO When SmartCrawl is Enabled

Disable Genesis SEO When SmartCrawl is Enabled

Genesis Theme Framework Code Snippets

As of the posting of this code snippet, the Genesis Theme Framework will disable SEO functionality for Yoast SEO, and All In One SEO. But if you use an alternative SEO plugin like SmartCrawl by WPMUDEV the Genesis SEO will stay active leading to SEO conflicts with SmartCrawl and confusion for Contributors, Editors, and Admins.

The good news is you do not need to change themes, adding the following code snippet to your theme’s functions.php, a helper file, or a functionality plugin will resolve the issue.

This snippet is verified to be compatible with and work with:

  • SmartCrawl Version 3.2.0
  • Genesis Version 3.3.5
  • WordPress version: 6.0.2
/** Disable Genesis SEO When SmartCrawl Enabled */
add_filter('genesis_detect_seo_plugins', 'sc_disable_genesis_seo');
function sc_disable_genesis_seo( $array ) {
    $array['classes'][] = "Smartcrawl_Loader";
    return $array;
}

by Jack Alltrade on September 5, 2022

Filed Under: Code Snippets, Genesis Framework, Plugins Tagged With: Genesis Framework, SEO, SmartCrawl, WPMUDEV

Reader Interactions

Share Your Two Cents Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Categories

  • Code Snippets
  • Development
  • File Management
  • Genesis Framework
  • Hosting
  • Legacy
  • Plugins
  • SEO
  • Tech Terms
  • Themes
  • User Experience
  • User Interface
  • WordPress Core
  • WordPress Functionality

Warning! Use at your own risk!

As always, use at your own risk and remember to backup your site prior to inserting new code.

© Copyright Jack Alltrade & Associates 2025 · Purely Supplemental™ is a trademark of Jack Alltrade & Associates