Website Development on Wix

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

Wix Website Development

Wix is a cloud platform for creating websites with a visual editor. It is positioned as a no-code tool, but for professional development, it provides Velo (Wix Code) — a JavaScript runtime environment for custom logic on the client side and serverless functions. Choosing Wix is justified when the client wants to edit content independently without engaging a developer.

Platform Capabilities

Wix Editor X (now Wix Studio) is a more professional version of the editor with a responsive layout grid, breakpoint management, and more precise control over element positioning. For commercial projects, Studio is the recommended choice.

Available out of the box:

  • visual editor with drag-and-drop
  • data collections (built-in database for dynamic content)
  • Wix Stores — e-commerce platform
  • Wix Bookings — online booking system
  • Wix Blog — blog platform
  • Wix Events — event management
  • form builder
  • SEO tools: meta tags, sitemap, canonical URLs

Project Structure on Wix Studio

A Wix Studio project is organized around pages, master pages (Header/Footer/common layout), and reusable sections:

  • Pages — regular static and dynamic pages
  • Dynamic Pages — pages whose content is generated from a collection (similar to templates in a CMS)
  • Lightboxes — modal windows
  • Master Page — common elements (navigation, footer)

Dynamic pages are created by connecting to a collection: one template generates a page for each record in the collection (/catalog/{slug} for each product).

Data Collections

Wix Content Manager is a built-in NoSQL database. Collections are created through the interface:

Collection: Services
Fields:
  - title (Text)
  - slug (Text, unique)
  - description (Rich Text)
  - image (Image)
  - category (Reference → Categories)
  - isActive (Boolean)
  - order (Number)

Permissions are configured at the collection level: who can read, create, update, and delete records. For a website with a personal account: Read — All, Write — Member only.

Query to a collection from code (Velo):

import wixData from 'wix-data';

$w.onReady(async function () {
  const result = await wixData.query('Services')
    .eq('isActive', true)
    .ascending('order')
    .find();

  $w('#repeater1').data = result.items;
});

SEO on Wix

Wix has a reputation for poor SEO capabilities, which became outdated by 2022. Current capabilities:

Configurable aspects:

  • title and meta description for each page
  • canonical URL (including custom ones)
  • robots meta tag
  • Open Graph and Twitter Card
  • structured data through SEO API (schema.org)
  • sitemap.xml (auto-generation + manual control)
  • hreflang for multilingual websites

Limitations:

  • JavaScript rendering — Googlebot renders JS, but indexing speed may be lower than SSR
  • Core Web Vitals — performance is lower than custom websites due to shared platform infrastructure
  • HTTP header control is limited

For most small and medium-sized businesses, Wix SEO limitations are not critical. For projects requiring aggressive SEO — consider alternative platforms.

When Wix is Suitable

  • business card website, corporate website up to 30-50 pages
  • client wants to edit content independently without hiring a developer
  • budget and timeline are limited, launch speed is more important than flexibility
  • integration with Wix ecosystem is needed (Wix Stores + Wix Bookings + Wix CRM)

Platform Limitations

  • website cannot be migrated from Wix to another platform (content export is limited)
  • customization is limited by editor capabilities and Velo API
  • platform changes may break custom code
  • performance depends on Wix infrastructure, not only on the implementation
  • pricing: free plan has Wix ads and wix.com in domain; connecting a custom domain and removing ads starts at ~$14/month (Business plan)

Typical Timelines

A business card website or small corporate website on Wix Studio (up to 10 pages, standard features): 5-8 working days. With dynamic pages from collections, filtering, forms, and Velo code: 10-15 days. E-commerce store on Wix Stores with custom features: 2-3 weeks.