CORE MODULE

Custom Code Overview

What you'll learn in this guide

Learn about custom code options in the Receive module and how they can be used to extend form behaviour, styling and functionality when required.

This is where the primary tutorial content will be published. Each guide should open with a brief explanation of what the user will accomplish, followed by step-by-step instructions organised in logical order. Use screenshots or annotated images to support key actions, and keep each step focused on a single task so users can follow along without losing their place.

‍

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

‍

Block Quotes

Where relevant, include callout boxes to highlight important notes, prerequisites, or warnings before the user begins.

‍

document.addEventListener('DOMContentLoaded', function () {
  console.log('Knowledge base page loaded');

  const accordionItems = document.querySelectorAll('.accordion-item');

  accordionItems.forEach(function (item) {
    const header = item.querySelector('.accordion-header');
    const content = item.querySelector('.accordion-content');

    if (!header || !content) return;

    header.addEventListener('click', function () {
      item.classList.toggle('is-open');

      const isOpen = item.classList.contains('is-open');
      content.style.display = isOpen ? 'block' : 'none';
    });
  });
});

‍

If the tutorial references settings or features covered in another guide, link to that guide using the anchor or cross-reference conventions defined in the knowledge base structure rather than repeating the content here. Close each tutorial with a clear confirmation of what the user should see or expect when they've completed the steps successfully, and suggest a logical next guide where applicable.

‍

This is a numbered list for formatting puposes.

‍

  1. This is an inline numbered list
  2. This is an inline numbered list
  3. This is an inline numbered list
  4. This is an inline numbered list
  5. This is an inline numbered list
  6. This is an inline numbered list
  7. This is an inline numbered list
  8. This is an inline numbered list
  9. This is an inline numbered list
  10. This is an inline numbered list

‍