Search by

tenbruggencate / legal-pages-lite

guy@tenbruggencatedevelopment.nl

Shopware 6 legal pages: drop-in privacy / terms / shipping / returns / disclaimer templates in nl-NL / en-GB / de-DE with merge fields.

Package info

bitbucket.org/Bruggencate/sw-plugin-legalpages-lite

Homepage

Issues

Documentation

Type:shopware-platform-plugin

pkg:composer/tenbruggencate/legal-pages-lite

Statistics

Installs: 189

Dependents: 0

Suggesters: 0

1.9.4 2026-09-04 19:47 UTC

README

Ten Bruggencate Development

Legal Pages Lite

Legal Pages Lite

The standard legal pages, done right. Dutch / English / German legal page templates with configurable merge fields for company details โ€” accessible, SEO-ready, per-sales-channel. Drop in, fill in the admin fields, ship.

License: MIT ยท Shopware: 6.7.x ยท PHP: 8.1 / 8.2

๐Ÿ‡ฌ๐Ÿ‡ง English ยท ๐Ÿ‡ณ๐Ÿ‡ฑ Nederlands ยท ๐Ÿ‡ฉ๐Ÿ‡ช Deutsch

๐Ÿ“– More context: Why we built this ยท How it compares

โš ๏ธ IMPORTANT โ€” this plugin provides TEMPLATE legal text. Have a legal professional (Dutch / German / EU consumer law) review your configured text before it's exposed to real customers. Templates are a starting point, not a guarantee.

โ–ฒ Legal Pages Pro is shipped and installs side by side with this plugin โ€” a cookie-consent banner with a /cookies policy page, proof-of-consent records, an accessibility statement, an Impressum validator and a compliance audit trail. Pro requires this plugin, so there is nothing to migrate. See Part of a Lite/Pro family below.

Screenshots

Privacy page on desktop โ€” branded title, locale-aware 'Last updated' date below the heading, sectioned body content with merge-field-resolved company details.

Privacy page with v1.2.0 "Last updated" timestamp

Privacy page on mobile โ€” fully responsive, last-updated line wraps below the heading, body sections stack cleanly.

Privacy page โ€” mobile (responsive)

What it does

Every Shopware store needs imprint, privacy, shipping, returns, and a disclaimer. Most shops either (a) copy-paste text from another site (legal risk) or (b) leave them as Lorem Ipsum until launch day (worse legal risk). This plugin ships sensible nl/en/de defaults based on Dutch EU-compliant consumer-law templates, with your company details merged in from the admin at render time.

  • Five pages, routable out of the box
  • Merge-field pattern โ€” admin fills in company details once; every page picks them up
  • Three locales โ€” nl-NL, en-GB, de-DE
  • Per-page toggle โ€” disable pages you don't need (e.g. if you already have a custom privacy page elsewhere)
  • Per-page "Last updated" timestamp (v1.2+) โ€” five new optional datetime config fields let you record when each page was last reviewed. Renders below the page heading as a localised line (Last updated 9 May 2026 / Laatst bijgewerkt op 9 mei 2026 / Zuletzt aktualisiert am 9. Mai 2026) using Twig's format_date('long'). Wrapped in <time datetime="YYYY-MM-DD"> for machine readers and Schema.org. Empty config hides the line

Part of a Lite/Pro family

Legal Pages Lite is the free, standalone Lite tier โ€” a complete, genuinely useful plugin in its own right. It has no upsell gating and never expires.

Legal Pages Pro (sold separately) is shipped and installs side by side with Lite, turning it into a compliance toolkit:

  • Cookie-consent banner with categories (necessary / functional / analytics / marketing) and a policy page at /cookies
  • Proof of consent โ€” every choice is recorded per visitor and sales channel, including banner and policy version
  • Accessibility statement at /accessibility (also /toegankelijkheid), pre-filled from your shop
  • Imprint validator โ€” checks per sales channel and language whether the required company details are complete (NL, DE, GB, EU)
  • Compliance audit trail of configuration changes, kept for five years and then purged automatically
  • One admin module (Settings โ†’ Legal & Compliance) plus an export of all your data, also automatic before uninstall

Pro requires this plugin via composer, so there is nothing to migrate. composer require tenbruggencate/legal-pages-pro is not on Packagist โ€” Pro is delivered directly today, with a Shopware Store listing in preparation.

โ†’ Legal Pages Pro

If Lite already covers what you need, you never have to think about Pro.

Install

composer require tenbruggencate/legal-pages-lite
bin/console plugin:refresh
bin/console plugin:install --activate TenBruggencateLegalPages
bin/console cache:clear

Pages

RoutePathContent
legal.voorwaarden/legal/voorwaardenAlgemene Voorwaarden (Terms & Conditions)
legal.privacy/legal/privacyPrivacyverklaring (Privacy Policy)
legal.verzending/legal/verzendingVerzendinformatie (Shipping Info)
legal.retour/legal/retourRetourbeleid (Return Policy)
legal.disclaimer/legal/disclaimerDisclaimer

Configuration

Configurable per sales channel from Extensions โ†’ Legal Pages.

FieldPurpose
companyNameCompany name (e.g. "Mijn Webshop B.V.")
companyAddressFull postal address
companyEmailContact email
companyPhonePhone number
kvkNumberChamber of Commerce number (KvK)
btwNumberVAT / BTW number
returnDaysReturn period in days (EU minimum: 14)
shippingCostStandard shipping cost
freeShippingThresholdFree shipping above this amount
enableVoorwaarden / enablePrivacy / enableVerzending / enableRetour / enableDisclaimerPer-page kill switches

Merge fields

The following placeholders are replaced with your configured values at render time:

{companyName}, {companyAddress}, {companyEmail}, {companyPhone}, {kvkNumber}, {btwNumber}, {returnDays}, {shippingCost}, {freeShippingThreshold}

To override any page's template, copy src/Resources/views/storefront/page/legal/<slug>.html.twig into your theme and edit. The merge-field resolver runs against whatever HTML/Twig you ship.

Standards

  • Performance โ€” static template rendering; no DB queries at request time. Merge-field substitution is a single strtr() call.
  • SEO โ€” proper <title> and <meta description> derived from the page content, stable URLs, a self-referencing canonical, and one sitemap.xml entry per enabled page. Indexing is gated on configuration: for as long as companyName or kvkNumber is empty on a sales channel, that channel's legal pages are served with <meta name="robots" content="noindex,follow">, emit no canonical, and are withheld from the sitemap โ€” an unconfigured shop renders empty merge fields, and thin legal text is worse in the index than no legal text. The rule lives in a single service, src/Service/LegalPagesReadiness.php, which both LegalPageController and LegalPagesUrlProvider read, so the meta tags and the sitemap can never disagree. Fill both fields in and the pages are indexable again on the next uncached request.
  • GDPR โ€” the privacy page template explicitly documents what you collect, why, and how long you keep it. Adapt the template to match your actual processing; don't leave the defaults unread. The plugin itself stores no visitor data โ€” full data-flow documentation in GDPR.md.
  • WCAG 2.2 AA โ€” semantic heading hierarchy (h1 / h2 / h3), proper lists for enumerated terms, keyboard-accessible <a> tags, no colour-only information. Live axe-core audit output + desktop + mobile screenshots: docs/ACCESSIBILITY.md.
  • Security โ€” merge-field substitution is done on server-side; no user input reaches the templates. All admin-supplied values are escaped via Twig.
  • Uninstall โ€” plugin:uninstall --keep-user-data preserves every TenBruggencateLegalPages.config.* row (company name, VAT, KvK, per-page toggles); without the flag the destructive path clears them all. No owned tables.

Production-readiness checklist

A deliberately short list of things to verify before enabling the plugin on a customer-facing storefront. Not legal cover โ€” the MIT license already disclaims warranty AND the templates ship with a "have a lawyer review before going live" disclaimer in their getting-started copy โ€” but practical guidance an experienced operator would want anyway.

  • [ ] Have a legal professional review the rendered text for your jurisdiction. The defaults are based on Dutch / EU consumer-law templates; UK shops post-Brexit, Swiss shops, and shops outside the EEA need adjustments. The plugin's intro banner in admin already says "TEMPLATES, not legal advice" โ€” heed it.
  • [ ] Fill every merge field that appears on a page you've enabled. Blank optional fields have their line dropped from the rendered page, but companyName and kvkNumber are load-bearing: while either is empty the pages are held back with noindex and kept out of the sitemap. The configuration UI flags blanks but doesn't block save.
  • [ ] *Set per-page `lastUpdated` dates (v1.2+) the moment you ship the reviewed text** โ€” visible "last reviewed" dates are a soft trust signal for visitors and a hard one for consumer-protection authorities. Date-pickers in the admin take seconds.
  • [ ] Decide which pages you actually want. The five toggles (enableVoorwaarden, enablePrivacy, etc.) default to on; turn off any you have a custom version of elsewhere (e.g. an existing privacy CMS page) so the plugin's route returns 404 instead of competing.
  • [ ] Test on staging that the routes resolve. The plugin's routes are at /legal/voorwaarden, /legal/privacy, etc. โ€” make sure your theme's footer links point at them (or your custom URLs, if you remap).

Compatibility

Core platform

ShopwarePHPStatus
6.7.x โ€” tested against 6.7.8, 6.7.98.1, 8.2Stable
6.6.xโ€”Not supported
6.5.x and earlierโ€”Not supported

Database

EngineVersionNotes
MySQL8.0+Primary target; JSON functions used for config-row manipulation in migrations
MariaDB10.11+Tested end-to-end; earlier versions lack some JSON operator support

Browsers (storefront)

Evergreen browsers only โ€” the two most recent stable releases of each:

BrowserDesktopMobile
Chrome / Chromiumโœ…โœ…
Firefoxโœ…โœ…
Safariโœ… (macOS)โœ… (iOS 16+)
Edgeโœ…โ€”

Internet Explorer and legacy Edge are not supported. The plugin emits no runtime JS (where applicable) so graceful degradation on older browsers usually still renders content, just without progressive enhancements.

Admin browsers

Same evergreen matrix โ€” the Shopware admin is Vue-based and has its own compatibility baseline that this plugin doesn't extend or narrow.

Development

ToolVersionScope
PHPโ‰ฅ 8.1Runtime + test suite
Composer2.xDependency management
Node.jsโ‰ฅ 18Only needed if you edit SCSS and re-run the theme compile
Pythonโ‰ฅ 3.9Only needed for the repo's asset-pipeline scripts (scripts/*.py)

Accessibility

WCAG 2.2 level A + AA โ€” see docs/ACCESSIBILITY.md for axe-core audit output and per-page violations.

What we test before each release

  • Full PHPUnit unit suite against PHP 8.1 + 8.2 (source-inspection tests don't need a kernel)
  • PHPStan level 8 + PHP-CS-Fixer (@PSR12 + @Symfony)
  • Composer validate on every plugin
  • Live-DB smoke tests (plugin install โ†’ activate โ†’ route render โ†’ uninstall cycle)
  • axe-core audit on the primary storefront surfaces (see ACCESSIBILITY.md)

Related plugins

  • Multi-Brand Lite โ€” per-brand configuration: each sales channel carries its own companyName / kvkNumber / etc., so a multi-brand store renders each brand's legal pages with its own entity details
  • Maintenance Lite โ€” legal footer links render in the maintenance footer so visitors can still reach imprint / privacy during downtime
  • Newsletter Lite โ€” /legal/privacy is the natural target for the privacyPageUrl config in Newsletter Lite

Support

License

MIT ยฉ Ten Bruggencate Development

Legal template text in snippets is provided under MIT for reuse, but template text alone does not constitute legal advice. You are responsible for adapting it to your business and jurisdiction.

More from Ten Bruggencate Development

Focused, privacy-first Shopware 6 plugins โ€” free to start, upgrade when you grow:

  • Newsletter โ€” Lite: GDPR-safe signup & subscriber-list management ยท Pro: campaigns, behavioural segmentation, product-pull blocks
  • Legal Pages โ€” Lite: localized legal-page templates ยท Pro: compliance toolkit (cookie consent, accessibility statement, imprint validator, audit trail)
  • Analytics โ€” Lite: multi-backend (Matomo / Plausible), GDPR-first ยท Pro: e-commerce conversion tracking
  • Maintenance โ€” Lite: branded, SEO-correct (HTTP 503) maintenance page ยท Pro: scheduled maintenance windows
  • Multi-Brand โ€” Lite: serve multiple brands from one Shopware, by hostname ยท Pro: per-brand transactional email overrides
  • Product Encyclopedia โ€” Lite: structured educational content pages ยท Pro: per-profile related-product cross-links
  • Seasons โ€” Lite: scheduled theme-config variants ยท Pro: per-variant marketing banners

Need more than a plugin? Ten Bruggencate Development builds and customizes Shopware 6 stores. โ†’ Let's talk