Changeset 3463876
- Timestamp:
- 02/17/2026 10:41:05 PM (6 weeks ago)
- Location:
- intufind
- Files:
-
- 33 added
- 3 edited
-
tags/1.1.1 (added)
-
tags/1.1.1/admin (added)
-
tags/1.1.1/admin/class-intufind-admin.php (added)
-
tags/1.1.1/admin/class-intufind-components.php (added)
-
tags/1.1.1/admin/css (added)
-
tags/1.1.1/admin/css/intufind-admin.css (added)
-
tags/1.1.1/admin/js (added)
-
tags/1.1.1/admin/js/intufind-admin.js (added)
-
tags/1.1.1/admin/partials (added)
-
tags/1.1.1/admin/partials/chat-display.php (added)
-
tags/1.1.1/admin/partials/recommendations-display.php (added)
-
tags/1.1.1/admin/partials/search-display.php (added)
-
tags/1.1.1/admin/partials/settings-display.php (added)
-
tags/1.1.1/admin/partials/status-display.php (added)
-
tags/1.1.1/admin/partials/sync-display.php (added)
-
tags/1.1.1/includes (added)
-
tags/1.1.1/includes/class-intufind-api.php (added)
-
tags/1.1.1/includes/class-intufind-chat-widget.php (added)
-
tags/1.1.1/includes/class-intufind-content-extractor.php (added)
-
tags/1.1.1/includes/class-intufind-exclusions.php (added)
-
tags/1.1.1/includes/class-intufind-list-columns.php (added)
-
tags/1.1.1/includes/class-intufind-mcp.php (added)
-
tags/1.1.1/includes/class-intufind-plugin.php (added)
-
tags/1.1.1/includes/class-intufind-recommendations-override.php (added)
-
tags/1.1.1/includes/class-intufind-search-override.php (added)
-
tags/1.1.1/includes/class-intufind-shortcodes.php (added)
-
tags/1.1.1/includes/class-intufind-sync-status.php (added)
-
tags/1.1.1/includes/class-intufind-sync.php (added)
-
tags/1.1.1/intufind.php (added)
-
tags/1.1.1/languages (added)
-
tags/1.1.1/languages/intufind.pot (added)
-
tags/1.1.1/readme.txt (added)
-
tags/1.1.1/uninstall.php (added)
-
trunk/includes/class-intufind-search-override.php (modified) (1 diff)
-
trunk/intufind.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
intufind/trunk/includes/class-intufind-search-override.php
r3461186 r3463876 101 101 */ 102 102 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 ); 104 104 } 105 105 -
intufind/trunk/intufind.php
r3462974 r3463876 4 4 * Plugin URI: https://intufind.com/integrations/wordpress 5 5 * 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. 06 * Version: 1.1.1 7 7 * Requires at least: 6.0 8 8 * Requires PHP: 8.0 … … 26 26 * Plugin constants. 27 27 */ 28 define( 'INTUFIND_VERSION', '1.1. 0' );28 define( 'INTUFIND_VERSION', '1.1.1' ); 29 29 define( 'INTUFIND_PLUGIN_FILE', __FILE__ ); 30 30 define( 'INTUFIND_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); … … 82 82 } 83 83 spl_autoload_register( 'intufind_autoloader' ); 84 85 /** 86 * Declare compatibility with WooCommerce features. 87 * 88 * @return void 89 */ 90 function 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 } 96 add_action( 'before_woocommerce_init', 'intufind_declare_woocommerce_compatibility' ); 84 97 85 98 /** -
intufind/trunk/readme.txt
r3462974 r3463876 5 5 Tested up to: 6.9 6 6 Requires PHP: 8.0 7 Stable tag: 1.1. 07 Stable tag: 1.1.1 8 8 WC tested up to: 9.6 9 9 License: GPLv2 or later … … 215 215 == Changelog == 216 216 217 = 1.1.1 = 218 * Declared compatibility with WooCommerce HPOS (High-Performance Order Storage) and block-based Cart/Checkout 219 217 220 = 1.1.0 = 218 221 * Added [intufind_search] shortcode for placing an inline search trigger button anywhere on the site … … 267 270 == Upgrade Notice == 268 271 272 = 1.1.1 = 273 Adds WooCommerce HPOS and Cart/Checkout blocks compatibility declarations. Resolves the "incompatible plugins" warning. 274 269 275 = 1.1.0 = 270 276 New [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.