Comprehensive guides and documentation to help you integrate and optimize Smooth Plugins for your WordPress and WooCommerce sites.
/wp-content/plugins/ directoryAfter activation, navigate to Settings → Smooth Search to configure:
Smooth Search provides several hooks and filters for developers:
// Filter search results
add_filter('smooth_search_results', function($results) {
// Customize results
return $results;
});
// Modify indexed fields
add_filter('smooth_search_indexed_fields', function($fields) {
$fields[] = 'custom_meta_field';
return $fields;
});