Plugin Directory

Changeset 3463876


Ignore:
Timestamp:
02/17/2026 10:41:05 PM (6 weeks ago)
Author:
intufind
Message:

Release intufind v1.1.1

Location:
intufind
Files:
33 added
3 edited

Legend:

Unmodified
Added
Removed
  • intufind/trunk/includes/class-intufind-search-override.php

    r3461186 r3463876  
    101101     */
    102102    public function is_woo_search_enabled() {
    103         return (bool) get_option( self::OPTION_ENABLE_WOO_SEARCH, false );
     103        return (bool) get_option( self::OPTION_ENABLE_WOO_SEARCH, true );
    104104    }
    105105
  • intufind/trunk/intufind.php

    r3462974 r3463876  
    44 * Plugin URI: https://intufind.com/integrations/wordpress
    55 * Description: AI-powered search and chat for WordPress. Syncs your content to the cloud for semantic search, intelligent recommendations, and conversational AI.
    6  * Version: 1.1.0
     6 * Version: 1.1.1
    77 * Requires at least: 6.0
    88 * Requires PHP: 8.0
     
    2626 * Plugin constants.
    2727 */
    28 define( 'INTUFIND_VERSION', '1.1.0' );
     28define( 'INTUFIND_VERSION', '1.1.1' );
    2929define( 'INTUFIND_PLUGIN_FILE', __FILE__ );
    3030define( 'INTUFIND_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
     
    8282}
    8383spl_autoload_register( 'intufind_autoloader' );
     84
     85/**
     86 * Declare compatibility with WooCommerce features.
     87 *
     88 * @return void
     89 */
     90function intufind_declare_woocommerce_compatibility() {
     91    if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
     92        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     93        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'cart_checkout_blocks', __FILE__, true );
     94    }
     95}
     96add_action( 'before_woocommerce_init', 'intufind_declare_woocommerce_compatibility' );
    8497
    8598/**
  • intufind/trunk/readme.txt

    r3462974 r3463876  
    55Tested up to: 6.9
    66Requires PHP: 8.0
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88WC tested up to: 9.6
    99License: GPLv2 or later
     
    215215== Changelog ==
    216216
     217= 1.1.1 =
     218* Declared compatibility with WooCommerce HPOS (High-Performance Order Storage) and block-based Cart/Checkout
     219
    217220= 1.1.0 =
    218221* Added [intufind_search] shortcode for placing an inline search trigger button anywhere on the site
     
    267270== Upgrade Notice ==
    268271
     272= 1.1.1 =
     273Adds WooCommerce HPOS and Cart/Checkout blocks compatibility declarations. Resolves the "incompatible plugins" warning.
     274
    269275= 1.1.0 =
    270276New [intufind_search] shortcode for placing a search trigger button anywhere on your site. Supports multiple variants, dark mode, and keyboard shortcuts.
Note: See TracChangeset for help on using the changeset viewer.