actualizer / price-hide
Hide prices and cart access for non-logged-in users and specific customer groups
Package info
github.com/actualizer/ActPriceHide
Language:Twig
Type:shopware-platform-plugin
pkg:composer/actualizer/price-hide
Requires
- php: >=8.3
- shopware/core: >=6.7.1 <6.8.0
README
A Shopware 6 plugin that provides advanced price visibility control and cart access management. Hide prices and restrict cart access for non-logged-in users or specific customer groups.
Features
- Hide prices for non-logged-in users
- Restrict cart access for non-logged-in users
- Customer group-based price visibility control
- Information bar display when prices are hidden
- Automatic redirect to login page on cart access
- AJAX and normal page request compatibility
- Multi-language support (German & English)
- Compatible with Shopware 6.7.1+
Price-Leak Protection
When prices are hidden, the plugin actively closes every known leak vector so that numeric prices never reach an unauthorised visitor, search engine, or scraper. All of these respect the existing customer-group allowlist: a logged-in customer in an allowed group still sees every price in every channel.
Server-side (introduced in v1.1.x–v1.2.0):
data-product-informationattribute on product cards — thepricekey is omitted entirely from the JSON blob that Shopware core emits on every card (listing, category, search, CMS sliders, cross-selling, suggest, wishlist). The key is removed rather than zeroed — a zero would be indexed as "0 EUR" in search results.- Listing price-range aggregation — the
priceaggregation is stripped from listing/search/suggestCriteria, so min/max values do not appear in XHR responses or filter sliders. - JSON-LD
schema.org/Offeron the product detail page — thepage_product_detail_json_ld_scriptblock is suppressed, so no structured-data price reaches search engines or scrapers. - Server-rendered inline tracking scripts —
gtag('event', 'view_item', {…})anddataLayer.push({…})blocks rendered by tracker plugins (GA4, Google Ads, Meta Pixel via GTM, WbmTagManagerEcomm, etc.) are scanned at response time;price,value,item_price,revenuekeys are removed from item objects, and outervalue/revenuetotals in the enclosing call are stripped as well.
Client-side (introduced in v1.2.0):
window.dataLayer.pushwrapper — inline<script>at the top of<head>intercepts every subsequent push and applies the same strip rules. Covers interaction-triggered events (add-to-wishlist, quick-view, scroll-triggeredview_item_list) that server-side filters cannot see because the payload is built in the browser at interaction time.- JS-plugin fallback — a second install channel registered on
<body>reads the config from<meta>tags and installs the wrapper onDOMContentLoaded. Kicks in when a customer theme overrideslayout/meta.html.twigwithout calling{{ parent() }}and suppresses the primary inline script.
Operations (v1.2.2)
- Kill-switch:
ActPriceHide.config.priceLeakGuardEnabled(default on). Toggles the client-side dataLayer guard — the server-side HTML filters always stay active. Toggle in admin + cache clear, no redeploy. - CLI verification:
bin/console act:price-hide:verify-guard [--url=https://shop.example]Fetches the storefront and returns exit code0(inline primary channel active),1(fallback channel only — theme probably overrideslayout_head_meta_tags_charsetwithoutparent()), or2(no guard detected at all). Suitable for deploy pipelines. - Admin guard-status card: the plugin config page shows the current protection state directly below the info banner — green (primary channel), yellow (fallback only), red (not installed). Re-check button re-runs the probe.
Requirements
- Shopware 6.7.1 or higher
- PHP 8.3 or higher
Installation
Via Composer (recommended)
composer require actualizer/price-hide bin/console plugin:refresh bin/console plugin:install --activate ActPriceHide bin/console cache:clear
Manual
- Download or clone this plugin into your
custom/plugins/directory - Install and activate the plugin via CLI:
bin/console plugin:refresh bin/console plugin:install --activate ActPriceHide bin/console cache:clear
Configuration
- Go to Admin Panel → Settings → System → Plugins
- Find "Actualize: Price Hide" and click on the three dots
- Click "Config" to access plugin settings
- Configure customer groups that should see prices
- Set up redirect behavior and display options
How it works
- Price Visibility Check: The plugin checks if the current user is logged in and belongs to an allowed customer group
- Price Hiding: If conditions are not met, prices are hidden across all storefront pages (product listings, detail pages, cart, etc.)
- Cart Access Control: Cart functionality is restricted when prices are hidden
- Information Display: Shows informational messages to users when prices are hidden
- Login Redirect: Automatically redirects users to login page when trying to access cart
Technical Details
Architecture
- Global Template Variables: Uses Shopware's native template variable system for reliable data access
- HeaderDataSubscriber: Dedicated subscriber for header-specific data injection
- HidePriceResolver: Single source of truth for the hide decision, shared by the render subscriber, listing-criteria subscriber, inline-tracking filter, and dataLayer-guard subscriber.
Events Used
StorefrontRenderEvent- To inject price hiding logic into all storefront pagesKernelEvents::RESPONSE(priority -128 / -127) - Post-rendering HTML filters fordata-product-informationattributes and inline tracking scripts- Template overrides for price-sensitive areas
Template Extensions
The plugin extends multiple templates to ensure consistent price hiding:
- Product listing pages
- Product detail pages
- Cart and checkout pages
- Search suggestions
- Header cart widget
layout/meta.html.twigfor the head-level dataLayer-guard inline script
AJAX Compatibility
All template files support both AJAX and normal page requests through dual checking logic:
- Request attributes for AJAX requests
- Page extensions for normal page loads
Translations
The plugin includes translations for:
- German (de-DE): Preis verstecken
- English (en-GB): Price hide
Translation keys:
header.priceHideInfoNotLoggedInheader.priceHideInfoNotAllowedheader.priceHideInfoAriaLabel(accessibility)
Development
Building/Testing
After making changes to templates or translations:
bin/console cache:clear bin/console theme:compile
If the client-side dataLayer guard is touched, rebuild the storefront and admin bundles:
./bin/build-storefront.sh ./bin/build-administration.sh
Debugging
The plugin respects Shopware's logging configuration. Check your log files for any price hiding logic errors.
Compatibility
- Shopware Version: 6.7.1+
- PHP Version: 8.3+
- AJAX Support: Full compatibility with AJAX requests
Support
For issues and feature requests, please use the GitHub issue tracker.
License
This plugin is licensed under the MIT License - see the LICENSE file for details.
Credits
Developed by Actualize
Made with ❤️ for the Shopware Community