Skip to content

Instantly share code, notes, and snippets.

@pirate-bot
Created February 26, 2026 08:15
Show Gist options
  • Select an option

  • Save pirate-bot/82c21fc253bfdcaf2c574e2a49a03810 to your computer and use it in GitHub Desktop.

Select an option

Save pirate-bot/82c21fc253bfdcaf2c574e2a49a03810 to your computer and use it in GitHub Desktop.
Disable smart recommendations in Themeisle products
<?php
/**
* Plugin Name: Disable Themeisle SDK Recommendations
* Description: A lightweight plugin to disable the in-context helpful recommendations in Themeisle products.
* Version: 1.0
* Author: Themeisle
* License: GPL-2.0+
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
add_filter( 'themeisle_sdk_ran_promos', '__return_true' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment