A slow WooCommerce store costs you money. Every extra second of load time drops conversion rates by roughly 7%. Here’s how to find what’s slow and fix it, from the highest-impact changes to the fine-tuning.

Step 1: Measure the Baseline

Before changing anything, measure. You need numbers to know if your changes are helping.

Test these specific pages:

  • Homepage
  • A product category page (the heaviest)
  • A product page
  • The cart page
  • The checkout page

Write down the TTFB (Time to First Byte) and total load time for each.

Step 2: Enable LiteSpeed Cache (Biggest Win)

If you haven’t set up LiteSpeed Cache yet, do it now. This alone can drop page load from 3 seconds to under 500ms for cached pages.

WooCommerce-specific settings in LiteSpeed Cache:

  1. Go to LiteSpeed Cache > Cache
  2. Under the WooCommerce section:
    • Privately Cache Cart = ON
    • Privately Cache Cart Page = ON
  3. Under Cache > Excludes:
    • Make sure checkout and my-account pages are NOT publicly cached (LiteSpeed Cache handles this by default)
  4. Go to Page Optimization:
    • CSS Combine = ON
    • JS Combine = ON (test thoroughly, this breaks some themes)
    • Load CSS Asynchronously = ON
    • Load JS Deferred = ON

After enabling, test your checkout flow completely. Place a test order.

Step 3: Optimize Your Database

WooCommerce hits the database hard. A bloated database means slow queries.

Clean Out the Junk

  1. Post revisions: WooCommerce creates revisions for products too

      // Add to wp-config.php
    define('WP_POST_REVISIONS', 3);
      
  2. Expired transients: go to LiteSpeed Cache > Database > Clean All

  3. Action Scheduler backlog: go to WooCommerce > Status > Scheduled Actions

    • If you see thousands of pending/completed actions, clean them up
    • Delete all completed actions older than 30 days
  4. wp_options autoload: the wp_options table is loaded on every page request. Check its size:

      SELECT SUM(LENGTH(option_value)) as autoload_size
    FROM wp_options WHERE autoload = 'yes';
      

    If autoload data exceeds 1MB, you have plugins storing too much data there. Identify the culprits by looking at option names.

Add Database Indexes

Install the Index WP MySQL For Speed plugin. It adds missing indexes to WordPress tables, especially useful for stores with thousands of products.

Step 4: Fix Slow Plugins

Install Query Monitor temporarily. It shows:

  • Which plugins run the most database queries
  • How long each query takes
  • Which HTTP API calls are made (and how long they take)
  • PHP errors

Common slow plugins in WooCommerce stores:

Plugin TypeProblemFix
Social sharing pluginsAdd external script requestsUse theme’s built-in social links or remove
Real-time analyticsJavaScript + server calls on every pageUse server-side analytics or defer loading
Heavy page buildersGenerate large DOM, slow renderingOptimize builder output, reduce sections
Abandoned cart pluginsBackground processes that run on every pageEvaluate if the ROI justifies the performance cost
Product review pluginsExtra database queries per product pageUse native WooCommerce reviews if possible

After identifying slow plugins, deactivate them one by one and re-measure TTFB.

Step 5: Optimize Images

Product images are often the biggest files on the page.

  1. Use WebP: LiteSpeed Cache converts images automatically

    • Go to LiteSpeed Cache > Image Optimization > Request Optimization
    • Enable WebP Replacement
  2. Set proper dimensions: don’t upload 4000px images for 800px thumbnails

    • WooCommerce thumbnail size: 600px wide max
    • Single product image: 800-1200px wide max
    • Set in Appearance > Customize > WooCommerce > Product Images
  3. Enable lazy loading: LiteSpeed Cache does this automatically for images below the fold

Step 6: Reduce External Requests

Every external script (fonts, analytics, payment widgets, chat tools) adds latency.

Check your waterfall in GTmetrix. Look for:

  • Google Fonts: self-host them instead of loading from Google’s CDN
  • Chat widgets: load them only on specific pages, not globally
  • Facebook Pixel, TikTok Pixel, etc.: load asynchronously
  • Font Awesome: if you use 5 icons, don’t load the entire 300-icon library

Step 7: Use Object Caching (VPS Only)

If you’re on a VPS, install Redis:

  1. Install Redis on the server (ask GoZen support on managed VPS)
  2. Install the Redis Object Cache plugin
  3. Enable it

Object caching stores database query results in RAM, so repeated queries (product lookups, menu structures, widget data) are served instantly instead of hitting MySQL.

This is the single biggest performance upgrade for WooCommerce beyond page caching. It helps uncached pages and admin panel speed significantly.

After Optimizing

Re-test the same pages you measured in Step 1. Compare:

MetricBeforeTarget
Homepage TTFB> 1s< 200ms (cached)
Product page load> 3s< 1.5s
Checkout page load> 2s< 1s
PageSpeed score (mobile)< 50> 80

If you’ve done everything above and performance is still inadequate, it’s time to upgrade to a VPS.

What to Do Next

Last updated 07 Apr 2026, 00:00 +0200. history

Was this page helpful?