Get Started

Documentation

Comprehensive guides and documentation to help you integrate and optimize Smooth Plugins for your WordPress and WooCommerce sites.

Quick Start

Installation

Installing Smooth Search

  1. Download the plugin from the WordPress repository
  2. Upload to your /wp-content/plugins/ directory
  3. Activate through the WordPress admin panel
  4. Configure your search settings
Setup Guide

Configuration

Basic Configuration

After activation, navigate to Settings → Smooth Search to configure:

  • Search index generation schedule
  • Searchable product fields
  • CDN configuration (optional)
  • Performance tuning options
Advanced

Developer Guide

Customization & Hooks

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;
});
Support

Need Help?

Can't find what you're looking for?

Visit Support Center → View API Reference →