Website Development on ProcessWire CMS

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

ProcessWire CMS Website Development

ProcessWire is a non-relational CMS with an API built around the concept "everything is a page". Each content unit is a page with fields; a template is a PHP file that renders the page. This architecture gives complete control over data structure without the limitations of WordPress or Drupal.

When to Choose ProcessWire

ProcessWire wins in tasks where content structure is complex and non-standard: service catalogs with dozens of attributes, multilingual portals, sites with non-standard page hierarchy. It doesn't impose a site type — there are no "posts" and "pages" like in WP, only pages with fields that you define yourself.

Typical projects:

  • corporate sites with non-trivial section structure
  • product catalogs with faceted filtering
  • multilingual sites (up to 30+ languages via LanguageSupport)
  • portals with custom content access rights

Project Architecture

ProcessWire template structure follows a simple principle: one template — one PHP file in /site/templates/. Markup, logic, and data can be separated through controllers/ directory or through built-in _init.php/_main.php.

/site/
  templates/
    _init.php          # global variables, helper includes
    _main.php          # layout wrapper (header/footer)
    home.php           # home template
    services.php       # service list template
    service-item.php   # single service template
    partials/
      nav.php
      hero.php
  modules/             # custom modules
  config.php

Data access via $pages API:

// Get all child pages with filtering
$services = $pages->find("template=service-item, status=published, sort=sort, limit=12");

// Full-text search
$results = $pages->find("template=service-item, title|body*=$q, limit=20");

// Nested selectors
$recent = $pages->find("template=news, date>=" . strtotime("-30 days") . ", sort=-date");

Fields and Data Types

ProcessWire supports 30+ field types out of the box: FieldtypeText, FieldtypeTextarea, FieldtypeImage, FieldtypeFile, FieldtypePage (relations), FieldtypeRepeater (repeating groups), FieldtypeOptions, FieldtypeMapMarker.

Relations between pages — via FieldtypePage:

// services.php template — output related materials
foreach ($page->related_cases as $case) {
    echo "<a href='{$case->url}'>{$case->title}</a>";
}

FieldtypeRepeater is used for sections with variable number of blocks — e.g., icon + title + text blocks on a landing:

foreach ($page->features as $feature) {
    echo "<div class='feature'>";
    echo "<img src='{$feature->icon->url}'>";
    echo "<h3>{$feature->headline}</h3>";
    echo "<p>{$feature->text}</p>";
    echo "</div>";
}

Multilingual Support

Modules LanguageSupport, LanguageSupportFields, LanguageSupportPageNames are enabled via admin. After activation, each text field gets language tabs. In template, language switching is one line:

$user->language = $languages->get("en");
echo $page->title; // returns English title

Page URLs are also translated: /ru/uslugi/razrabotka/ and /en/services/development/ — the same page.

Access Rights and Roles

ProcessWire has granular permissions: you can limit editing of a specific template to a specific role, prohibit publication without approval, hide fields from certain users. Configuration via $config->pagefileSecure and PageEditPerRole module.

Performance

Template-level caching via $cache API:

$nav = $cache->get("main-nav");
if (!$nav) {
    $nav = buildNav($pages);
    $cache->save("main-nav", $nav, 3600); // TTL 1 hour
}

ProCache (paid module) generates static HTML files and serves them directly via .htaccess, bypassing PHP entirely — speed approaches static sites.

Typical Development Timeline

Site Type Pages/Templates Timeline
Corporate website 6–10 templates 3–5 weeks
Catalog with filtering 8–14 templates 5–8 weeks
Multilingual portal 10–20 templates 7–12 weeks
API backend (headless) 4–8 templates 2–4 weeks

Headless Mode

ProcessWire works as headless CMS via ProcessWireAPI module or manually — template returns JSON:

// api.php — API endpoint template
header("Content-Type: application/json");
$data = [];
foreach ($pages->find("template=product, limit=50") as $p) {
    $data[] = [
        "id"    => $p->id,
        "title" => $p->title,
        "slug"  => $p->name,
        "price" => $p->price,
        "image" => $p->image->httpUrl ?? null,
    ];
}
echo json_encode($data);

Frontend on React or Next.js fetches data via this endpoint. ProcessWire then only handles storage and content delivery.