HowTo schema on Wix: step-by-step rich results for tutorial and guide content

Module 6: Technical SEO, Structured Data & Rich Snippets for Wix | Lesson 70 of 687 | 50 min read

By Michael Andrews, Wix SEO Expert UK

HowTo schema can display your step-by-step guides with numbered steps directly in Google search results, before users even visit your site. When implemented correctly, Google shows an expandable set of steps in the SERP, dramatically increasing your listing's visual real estate and establishing your content as the definitive guide for a topic. For Wix site owners who publish tutorials, guides, and instructional content, HowTo schema is one of the most visually impressive rich results available. This lesson covers when to use HowTo schema, the complete JSON-LD structure with all optional properties, implementation on Wix, advanced features like images and tools, and ongoing maintenance.

How-to diagram showing technical SEO elements including JSON-LD structured data markup, schema types, site speed optimisation, and rich snippet results in Google
Technical SEO and structured data transform how Google displays your Wix site in search results with rich snippets and enhanced listings.

What HowTo Rich Results Look Like

When Google shows HowTo rich results, your search listing gains an expandable section showing numbered steps with titles. Users can click to expand individual steps and see the full instructions directly in the SERP. On mobile, the steps may display as a carousel that users can swipe through. This is one of the most visually prominent rich result types available.

When to Use HowTo Schema

HowTo schema is appropriate for instructional content where you guide someone through a sequential process. The content must present steps that are meant to be followed in order to accomplish a specific task.

Good Candidates for HowTo Schema

Pages That Should NOT Use HowTo Schema

Google's Eligibility Requirements

Content Parity Required: Google enforces strict content parity for HowTo schema. Every step in your JSON-LD must appear as visible content on the page. If you add schema steps that do not match the visible instructions, Google will ignore the schema or may take manual action.

Basic HowTo Schema Structure

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "HowTo",
  "name": "How to Add Schema Markup to a Wix Website",
  "description": "A step-by-step guide to adding JSON-LD structured data to any Wix page using Custom Code injection.",
  "totalTime": "PT15M",
  "step": [
    {
      "@type": "HowToStep",
      "name": "Open Wix Dashboard Settings",
      "text": "Log into your Wix dashboard and click Settings in the left sidebar menu.",
      "position": 1
    },
    {
      "@type": "HowToStep",
      "name": "Navigate to Custom Code",
      "text": "In Settings, scroll down and click Custom Code under the Advanced section.",
      "position": 2
    },
    {
      "@type": "HowToStep",
      "name": "Add Your Schema Code",
      "text": "Click Add Custom Code, paste your JSON-LD schema code, set placement to Head, choose which pages to apply it to, and click Apply.",
      "position": 3
    }
  ]
}
</script>

All HowTo Properties Explained

Advanced HowTo Schema with All Properties

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "HowTo",
  "name": "How to Optimise Images for Your Wix Website",
  "description": "Learn how to compress, resize, and correctly format images for your Wix site to improve page speed and Core Web Vitals scores.",
  "image": "https://yoursite.com/images/image-optimization-guide.jpg",
  "totalTime": "PT30M",
  "estimatedCost": {
    "@type": "MonetaryAmount",
    "currency": "GBP",
    "value": "0"
  },
  "tool": [
    {
      "@type": "HowToTool",
      "name": "Squoosh image compressor"
    },
    {
      "@type": "HowToTool",
      "name": "PageSpeed Insights"
    }
  ],
  "supply": [
    {
      "@type": "HowToSupply",
      "name": "Original images in PNG or JPG format"
    }
  ],
  "step": [
    {
      "@type": "HowToStep",
      "name": "Audit Your Current Images",
      "text": "Run your Wix site through PageSpeed Insights and scroll to the Properly Size Images and Serve Images in Next-Gen Formats opportunities to identify which images need optimisation.",
      "image": "https://yoursite.com/images/step1-pagespeed.jpg",
      "url": "https://yoursite.com/image-optimization#step-1",
      "position": 1
    },
    {
      "@type": "HowToStep",
      "name": "Compress Images with Squoosh",
      "text": "Open squoosh.app and drag each flagged image into the tool. Set the output format to WebP, adjust quality to 75-80%, and download the compressed version. This typically reduces file size by 60-80%.",
      "image": "https://yoursite.com/images/step2-squoosh.jpg",
      "url": "https://yoursite.com/image-optimization#step-2",
      "position": 2
    },
    {
      "@type": "HowToStep",
      "name": "Upload Optimised Images to Wix",
      "text": "In the Wix Editor, click on each image element and replace the current image with your compressed version. Wix will automatically convert to WebP for supported browsers, but uploading a pre-optimised file ensures the best results.",
      "image": "https://yoursite.com/images/step3-upload.jpg",
      "url": "https://yoursite.com/image-optimization#step-3",
      "position": 3
    },
    {
      "@type": "HowToStep",
      "name": "Verify Speed Improvement",
      "text": "Re-run PageSpeed Insights on the page and compare your new scores to your baseline. LCP should improve and the image-related opportunities should disappear from the report.",
      "image": "https://yoursite.com/images/step4-verify.jpg",
      "url": "https://yoursite.com/image-optimization#step-4",
      "position": 4
    }
  ]
}
</script>

HowToStep Properties in Detail

Step Images: Adding images to each step significantly increases the likelihood of Google showing your HowTo rich result and makes the result more visually engaging. Even simple screenshots can be valuable. Google may show step images as a carousel on mobile.

Time Formatting (ISO 8601 Duration)

The totalTime property uses ISO 8601 duration format, which starts with "PT" (Period, Time) followed by the duration.

Writing Steps That Get Selected for Rich Results

Adding HowTo Schema to Wix: Step-by-Step

Complete implementation process

Combining HowTo with Other Schema

HowTo schema works well alongside Article or BlogPosting schema on tutorial blog posts. Use the @graph array to combine them.

{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "BlogPosting",
      "headline": "How to Add Schema Markup to Wix",
      "author": { "@type": "Person", "name": "Your Name" },
      "datePublished": "2026-01-15"
    },
    {
      "@type": "HowTo",
      "name": "How to Add Schema Markup to Wix",
      "step": [
        { "@type": "HowToStep", "name": "Step 1", "text": "...", "position": 1 }
      ]
    },
    {
      "@type": "BreadcrumbList",
      "itemListElement": [
        { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://yoursite.com" },
        { "@type": "ListItem", "position": 2, "name": "Blog", "item": "https://yoursite.com/blog" },
        { "@type": "ListItem", "position": 3, "name": "How to Add Schema Markup to Wix" }
      ]
    }
  ]
}

Common HowTo Schema Mistakes

Monitoring and Maintaining HowTo Schema

How to Write HowTo Page Content That Qualifies for Rich Results

HowTo rich results require not just valid schema but also well-structured page content that matches the schema exactly. Use this process to create eligible tutorial pages on Wix.

Creating HowTo-eligible tutorial content on Wix

Final Checkpoint: Every tutorial page with HowTo schema should pass the Rich Results Test with zero errors. Steps must match visible content exactly. Include totalTime and images where possible for maximum rich result eligibility. Monitor Google Search Console Enhancements for HowTo detection within 2-4 weeks.

This lesson on HowTo schema on Wix: step-by-step rich results for tutorial and guide content is part of Module 6: Technical SEO, Structured Data & Rich Snippets for Wix in The Most Comprehensive Complete Wix SEO Course in the World (2026 Edition). Created by Michael Andrews, the UK's No.1 Wix SEO Expert with 14 years of hands-on experience, 750+ completed Wix SEO projects and 425+ verified five-star reviews.