Public Backlog

WebinOne announcements, releases, updates and achievements

v7.10 Release date: 13 May, 2026

Full Release Notes

New Focus for Basic, Plus, and Max Ecommerce Plans

The Basic, Plus, and Max ecommerce plans have been restructured to better align with current customer needs. Several features have been moved down across plan tiers, expanding the value of the Basic and Plus plans, while the Max plan is temporarily withdrawn from the available plan options.

Plan pricing remains unchanged and no new plans have been introduced. See the updated plan overview at webinone.com/new-pricing.

What changed

Basic plan

The following features, previously available only from the Plus plan, are now included in the Basic plan:

  • Attributes
  • Inventory Management
  • Gift Vouchers
  • Discount Codes

Plus plan

The following features, previously available only on the Max plan, are now included in the Plus plan:

  • Wholesale Pricing
  • Custom Order Statuses
  • Shipping options (Shipping Integrations)

Max plan

The Max plan has been temporarily removed from the list of plans available when creating a new site. New sites are now created on Content Pro and Ecommerce Plus plans.

Self-service site transferring

A new Transfer Sites section has been introduced in the WebinOne Portal, allowing any Free User, Associate, Partner, or Partner Agency reseller to transfer one or more sites to another reseller account. The functionality covers the entire flow — from creating a transfer request, through receiver confirmation and Stripe payment, to scheduled execution and post-transfer history.

Key capabilities

  • Transfer Sites section: A dedicated menu item with Outgoing, Incoming, and History tabs is available to portal owners. A badge highlights active requests that require attention.
  • Transfer request: A request can include one or more sites and is created through a guided wizard covering site selection, receiver, fee payer, subscription handling (Keep / Cancel), and transfer time (Immediately / Off-hours). Unfinished requests are saved as Draft and can be resumed at any time. The receiver can accept, decline, or modify the request through a limited Change Request flow.
  • Payment: Each transfer is charged at a fixed rate of $100 per site, paid by either the sender or the receiver via Stripe Checkout, depending on the selected Fee Payer.
  • Transfer execution: Sites are transferred sequentially after payment. Off-hours transfers run within the 00:00–06:00 window in the data center's local time to minimize downtime. Aggregated and per-site progress is displayed on the request detail page.
  • Status history & notifications: Every request maintains an immutable chronological log of status transitions, available from the request page. Email notifications are sent to the sender and receiver at all key events (request created, accepted, updated, declined, completed).

Constraints

  • A site can participate in only one active transfer request at a time.
  • Transfers are allowed only within the same data center region.
  • A request expires automatically after 7 days without confirmation.
  • Once paid, a request can no longer be edited.

Decimal Number Support for Custom Properties

A new Decimal Number custom property type has been added, allowing fractional values to be stored and processed in module items. Previously, the Number custom property supported integer values only; Decimal Number extends this capability to decimal values such as 1.5, 0.75, or 10.25.

The existing Number property remains unchanged and continues to support integer values only.

Key capabilities

  • Flexible decimal input: Decimal values can be entered using either a dot (.) or a comma (,) as the decimal separator. After saving, the value is automatically normalized and displayed according to the configured country/locale format, consistent with the behavior of system product fields such as Weight, Width, Height, and Depth.
  • Admin panel support: The new Decimal Number type is available when creating or editing custom properties in the admin panel.
  • Open API support: Open API endpoints accept and return decimal values for properties of type Decimal Number.
  • Import / Export support: Decimal values are fully supported when importing and exporting module item data.
  • Frontend item forms: Create and edit (draft) item forms rendered on the frontend support decimal input for Decimal Number properties using a standard numeric input.

Example:

<div>
  <label>{Name}</label>
  <input type="number" name="prop_{Name}" step="0.01" value="">
</div>

Advanced Cleanup Rules Builder with Structured Condition System

The Data Cleanup Rules functionality (both Auto Cleanup and Manual Cleanup) has been redesigned to use a flexible, structured condition builder. Fixed presets such as Created more than 30 days ago or Last login for 90 days have been replaced with a universal system that allows administrators to combine condition types and parameters dynamically. This removes hardcoded time intervals, unifies the condition structure across all entities, and makes cleanup configuration scalable for future condition types.

New condition structure

Each condition group is now composed of:

  • Condition Type – the attribute being evaluated (e.g., Creation date, Last updated, Status)
  • Condition – the comparison operator (e.g., Older than, Within last, Has order)
  • Dynamic parameters – value, period, multiselect options, or date range, depending on the selected type

Logic rules

  • AND is applied between different Condition Types
  • OR is applied within multiselect values of a single Condition
  • Records with an active recurring subscription remain protected and cannot be removed

Manual Cleanup – Specific period

Manual Cleanup additionally supports a 'Specific period' option for date-based conditions (Creation date, Last updated, Last login), providing a date range picker (from – to). This option is not available in Auto Cleanup.

Exceptions

Exceptions have been migrated to the same structured model. The previous "Items and records with active recurring subscriptions" exception has been removed and replaced with a permanent system note: Contacts with active recurring subscriptions are always protected and cannot be removed. The same logical condition cannot be selected simultaneously in 'Conditions' and 'Exceptions'.

Open API Support for CRM Contact Billing Fields

The CRM Contacts Open API endpoints now support billing address fields in both request and response payloads, allowing external systems to read and update contact billing details through the API in line with the data already available in the admin panel.

Updated Endpoints

  • GET /api/v2/admin/contacts
  • POST /api/v2/admin/contacts
  • GET /api/v2/admin/contacts/{id}
  • PUT /api/v2/admin/contacts/{id}

Newly Supported Fields

  • BillingAddress
  • BillingCity
  • BillingState
  • BillingZipCode
  • BillingCountry

Order Customer Snapshot and Independence from Contacts

Orders are now self-contained and no longer depend on the existence of their associated contact. When an order is created, a customer snapshot (email, first name, last name, billing address) is saved directly on the order, alongside the existing shipping snapshot. If the contact is later deleted, the order remains intact and displays safely-masked customer data.

Contact deletion behavior

The MemberId field on orders is now nullable and is automatically set to NULL when the related contact is deleted. The order itself, including its snapshot, is preserved.

Masked Responses for Deleted Contacts

For orders with a deleted contact, standard API and UI responses return masked values:

  • Emaila***@gmail.com
  • First / Last nameJ***n / S***w (three asterisks between the first and last character)
  • Billing and Shipping address – fully masked as ***

New admin permission – Can View Customer Snapshot Data

  • Enabled – the ‘Reveal Data’ button is shown on the order and the admin can disclose the original snapshot values.
  • Disabled – the button is hidden and the data-reveal endpoint returns 403 Forbidden.

List, Detail, and Search Behavior

  • Orders are listed regardless of whether the related contact still exists. If the contact exists, current contact data is shown; otherwise the masked snapshot is shown.
  • The order detail page remains fully functional when MemberId is NULL.
  • In the Trash, orders with deleted contacts are shown using the masked snapshot, and data reveal is not available.
  • The order list now exposes two search fields per customer attribute (live contact data and snapshot data). With the Can View Customer Snapshot Data permission, search runs across both (OR); without it, only live contact data is searched.

Export

Snapshot fields for deleted contacts are always exported in masked form, regardless of the exporting user's permissions. Revealing original values through export is not allowed.

Open API

  • A dedicated GET endpoint has been introduced for retrieving an order's customer snapshot.
  • A new Open API scope CrmOrdersSnapshot - read has been added; the snapshot endpoint is accessible only to clients with this scope.

Restoring Orders from Trash

If the original contact still exists, the order is re-linked to that contact. If the contact has been deleted but a snapshot is available, the order is restored with MemberId = NULL and continues to use the snapshot. Deleted contacts and related entities are not recreated.

Orders Trash Management with Restore and Retention

A new Trash section has been added to the Orders area of the admin panel. Deleted orders are now temporarily stored in the Trash, where administrators can restore them or remove them permanently. This prevents accidental data loss and provides a controlled retention window for deleted records.

Access

A button has been added in the Orders section to open the Trash as a separate screen. From the Trash, administrators can return to the main Orders list at any time.

Trash List View

  • Displays the list of deleted orders with standard pagination and search.
  • The following features are intentionally not available in the Trash:
    • Order details page navigation
    • Create order button
    • Import button
    • Export button

Available Actions

  • Restore: Returns the order to the main Orders list and restores it to an active state.
  • Delete permanently: Removes the order and all related data (payments, order lines, and other dependent records) with no possibility of recovery.

A global Delete all action is also available, which permanently clears all orders from the Trash. All permanent deletion actions require explicit confirmation.

Retention

Orders are stored in the Trash for up to 90 days. After this period, they are automatically and permanently deleted, along with all related entities. The retention countdown starts from the moment the order is moved to the Trash; a dedicated field on the order entity stores the move-to-trash date and time used for this calculation.

Open API

The Trash management endpoints have been added to the Open API specification and documented in Swagger.

VAT Invoice Number Generation Without Gaps

A dedicated VAT Invoice Number has been introduced for orders, providing a strictly sequential, gap-free numbering stream that complies with EU VAT requirements. The existing Invoice Number continues to operate unchanged as an external reference for payment system integrations.

Behavior

  • VATInvoiceNumber is generated only after an order has been successfully paid.
  • It uses its own sequential numbering with no gaps and is immutable once assigned. Attempting to regenerate the VAT invoice number for an order returns an error.
  • InvoiceNumber continues to serve as the external payment reference, with its existing logic unchanged.
  • VATInvoiceNumber is treated as the legally significant invoice number.

The sequence counter is initialized from the maximum existing invoice value to ensure no duplicates are produced for newly generated VAT invoice numbers.

Bug fixes

Portal

  • Added SVG image support in portal branding.

Admin panel

  • Fixed a duplicate Workflows entry in the admin role permissions list.

Email and notifications

  • Fixed an issue where file links in emails contained an extra //, resulting in URLs such as //_form_submissions/12345/.

Modules

  • Fixed an issue where applying a template from the item list via Apply Template updated only the frontend output but not the OSE.
  • Custom properties are now exported in alphabetical order in module item exports.
  • Added support for bulk-moving custom properties using CTRL / CMD selection.
  • Fixed an issue where admin users could not see editable fields on the module item details page.

WYSIWYG editor

  • Fixed an issue where files uploaded via the WYSIWYG editor were placed in the root of File Manager instead of the selected folder.
  • Fixed an issue where links and configured indentation were lost when switching between WYSIWYG and code view.

File Manager

  • Fixed an issue where files could be created without a file extension.
Show more less
New Feature

Decimal Number Support for Custom Properties

Add a new Decimal Number custom property type to support fractional values across admin, frontend, Open API, and import/export flows. This enables consistent handling of decimal data while keeping the existing Number property unchanged for integer-only values.
  • Custom Modules
New Feature

Self-service Site Transferring

Introduces a new Transfer Sites section in the WebinOne Portal that enables Free Users, Associates, Partners, and Partner Agency resellers to transfer one or more sites to another reseller account. The flow is handled end-to-end through a guided wizard — covering site selection, receiver confirmation, subscription handling, fee payment via Stripe ($100 per site), and scheduled execution (Immediate or Off-hours)....
  • WebinOne Portal
Improvement

Advanced Cleanup Rules Builder with Structured Condition System

Replace preset-based cleanup rules with a flexible condition builder using structured logic (condition types, operators, and dynamic parameters). This enables scalable rule configuration across all entities, improves consistency, and allows more precise and customizable data cleanup.
  • CRM
  • Custom Modules
Improvement

New Focus for Basic, Plus, and Max Ecommerce Plans

Each Ecommerce plan now targets a clear type of store. Basic becomes a full B2C store and gains Attributes, Inventory Management, Gift Vouchers, and Discount Codes from Plus. Plus becomes a B2B store and gets Wholesale Pricing, Custom Order Statuses, and Shipping Integrations from Max. Max is now focused on franchises and multi-site brands. Prices stay the same and no...
  • Ecommerce
  • Pricing & Plans
Improvement

Open API Support for CRM Contact Billing Fields

Extend CRM Contacts API endpoints to include billing address fields in both request and response payloads. This ensures contact billing data can be fully created, updated, and retrieved through the Open API.
  • Open API
Improvement

Order Customer Snapshot and Independence from Contacts

Store customer snapshot data on orders and remove dependency on active contacts, allowing orders to remain functional even after contact deletion. This preserves data integrity, supports masked fallback data, and ensures controlled access to sensitive information.
  • CRM
Improvement

Orders Trash Management with Restore and Retention

Introduce an Orders Trash to temporarily store deleted orders with options to restore or permanently remove them. This adds protection against accidental deletion while ensuring automatic cleanup through a defined retention period.
  • CRM
  • UI/UX
Improvement

VAT Invoice Number Generation for Orders Without Gaps

Introduce a dedicated VAT invoice numbering system generated only after successful payment, ensuring a continuous, gap-free sequence compliant with EU VAT requirements. This preserves the existing InvoiceNumber for external references while providing a legally valid invoice identifier.
  • CRM