GPSR Product Safety Regulation Professional

Product number: AcrisGpsr

Product information "GPSR Product Safety Regulation Professional"

Highlights

Rule-based display of GPSR information: Alternatively: GPSR information per product / Alternatively: GPSR information per manufacturer Display of relevant GPSR information: Manufacturer information / Responsible person / Warning and safety information Custom display of GPSR information: In the GPSR tab / As a separate tab / In the product description

 

Features

Extension of manufacturers to include additional information (manufacturer's name, address and electronic address of the manufacturer) Extension of manufacturers to include details of the person responsible in the EU (name, postal address and electronic address) Extension of the manufacturer function with the option of displaying a modal with the relevant GPSR information instead of the link to the manufacturer Adding GPSR information to the products: Details of the manufacturer, details of the responsible person in the EU, product type, warnings, safety instructions, important information Management module for controlling the required GPSR information using Dynamic Product Groups & Rulebuilder rules (warning/safety information, manufacturer information and responsible person in the EU) “Report a problem” function by contacting the online store operator can be optionally displayed (feature will be available from October 2024)

 

General information about the Product Safety Regulation (GPSR)


What does the EU General Product Safety Regulation (GPSR) regulate?

Regulation (EU) 2023/988 on general product safety (General Product Safety Regulation; GPSR) contains essential requirements for the safety of consumer products that are placed or made available on the market.


What information obligations must retailers fulfill under the GPSR?

In distance selling (e.g. via online stores, marketplace stores or also when selling by email), the offer of products must already contain at least the following information in accordance with Art. 19 GPSR:

1.) Indication of the name, brand, address and electronic address of the manufacturer.
Every product offer in online trade must
  • the name, registered trade name or registered trade mark of the manufacturer of the product offered and
  • the postal address and
  • an electronic address (e-mail address or URL of a website)
of the manufacturer at which the manufacturer can be contacted.

2) Indication of the name, postal address and electronic address of the responsible person
If the manufacturer of a product on offer does not have an establishment in the European Union (EU), online retailers must - in addition to the aforementioned manufacturer information - also include the following in the product offers affected by this
  • the name,
  • the postal address and
  • an electronic address (e-mail address or URL of a website)
of the so-called responsible person within the meaning of the GPSR or in accordance with Regulation (EU) 2019/1020 on market surveillance and compliance of products.

3) Indication of images of the product and information about the product type
In future, product offers from online retailers must also contain information that allows the product to be identified. In accordance with the provisions of the EU Product Safety Regulation, this expressly includes information such as
  • Images of the product (=product images),
  • the type of product and
  • other product identifiers


4) Indication of warnings and safety information
In future, online retailers must also include any warnings or safety information in their product offers that must be provided in accordance with the GPSR or other EU regulations.

These warnings and information must be in a language that is easy for consumers to understand. The language is to be determined by the EU Member State in which the product is made available on the market. If the product is made available on the market, i.e. sold and supplied, in several or even all EU Member States, the warnings and safety information must be provided in all the official languages concerned.

In addition, the warnings and safety information must also be affixed to the product or to the product packaging or enclosed in an accompanying document.

Source and further information (without guarantee): https://www.it-recht-kanzlei.de/eu-produktsicherheitsverordnung-gpsr-haendler-informationspflichten.html

This plugin extends the Shopware standard with the option of specifying and controlling the required GPSR data in various places - these points have been implemented in line with the above requirements:
1.) Additional manufacturer information can be specified either directly on the product, with the manufacturer or using dynamic product groups and rules.
2) The person responsible for the EU can be specified either directly on the product, by the manufacturer or by means of dynamic product groups and rules.
3) A field has been added to the product to maintain the product type.
4) Warnings, safety instructions and important information can be specified directly on the product or by means of dynamic product groups and rules.

In the future, the option “Report a problem” will also be implemented so that customers can actively report a problem with a product.


GPSR information in product exports for other sales channels
GPSR Information that is stored directly with the product or manufacturer is available via the additional fields (custom_fields) in the product exports (example: product.customFields.acris_gpsr_product_manufacturer).

As of plugin version 2.14.9, GPSR information from the dynamic assignment is also available in product exports for other sales channels.

An integration can look like this:
{% if product.extensions.acrisGpsr.manufacturers.first is defined %}{{ product.extensions.acrisGpsr.manufacturers.first.name }}{% endif %}
{% if product.extensions.acrisGpsr.contacts.first is defined %}{{ product.extensions.acrisGpsr.contacts.first.name }}{% endif %}
{% if product.extensions.acrisGpsr.notes.first is defined %}{{ product.extensions.acrisGpsr.notes.first.headline }}{% endif %}

- Manufacturer
product.extensions.acrisGpsr.manufacturers.first
product.extensions.acrisGpsr.manufacturers.first.headline
product.extensions.acrisGpsr.manufacturers.first.text
product.extensions.acrisGpsr.manufacturers.first.hasAddress
product.extensions.acrisGpsr.manufacturers.first.name
product.extensions.acrisGpsr.manufacturers.first.street
product.extensions.acrisGpsr.manufacturers.first.houseNumber
product.extensions.acrisGpsr.manufacturers.first.city
product.extensions.acrisGpsr.manufacturers.first.zipcode
product.extensions.acrisGpsr.manufacturers.first.country
product.extensions.acrisGpsr.manufacturers.first.phoneNumber
product.extensions.acrisGpsr.manufacturers.first.address
product.extensions.acrisGpsr.manufacturers.first.modalInfoText
product.extensions.acrisGpsr.manufacturers.first.modalLinkText
product.extensions.acrisGpsr.manufacturers.first.documents


- Responsible person
product.extensions.acrisGpsr.contacts.first.headline
product.extensions.acrisGpsr.contacts.first.text
product.extensions.acrisGpsr.contacts.first.hasAddress
product.extensions.acrisGpsr.contacts.first.name
product.extensions.acrisGpsr.contacts.first.street
product.extensions.acrisGpsr.contacts.first.houseNumber
product.extensions.acrisGpsr.contacts.first.city
product.extensions.acrisGpsr.contacts.first.zipcode
product.extensions.acrisGpsr.contacts.first.country
product.extensions.acrisGpsr.contacts.first.phoneNumber
product.extensions.acrisGpsr.contacts.first.address
product.extensions.acrisGpsr.contacts.first.modalInfoText
product.extensions.acrisGpsr.contacts.first.modalLinkText
product.extensions.acrisGpsr.contacts.first.documents

- Warning/safety instructions
product.extensions.acrisGpsr.notes.first.headline
product.extensions.acrisGpsr.notes.first.text
product.extensions.acrisGpsr.notes.first.hasAddress
product.extensions.acrisGpsr.notes.first.name
product.extensions.acrisGpsr.notes.first.street
product.extensions.acrisGpsr.notes.first.houseNumber
product.extensions.acrisGpsr.notes.first.city
product.extensions.acrisGpsr.notes.first.zipcode
product.extensions.acrisGpsr.notes.first.country
product.extensions.acrisGpsr.notes.first.phoneNumber
product.extensions.acrisGpsr.notes.first.address
product.extensions.acrisGpsr.notes.first.modalInfoText
product.extensions.acrisGpsr.notes.first.modalLinkText
product.extensions.acrisGpsr.notes.first.documents
product.extensions.acrisGpsr.notes.first.isNote
product.extensions.acrisGpsr.notes.first.noteType
product.extensions.acrisGpsr.notes.first.backgroundColor
product.extensions.acrisGpsr.notes.first.borderColor
product.extensions.acrisGpsr.notes.first.headlineColor
product.extensions.acrisGpsr.notes.first.mobileVisibility
product.extensions.acrisGpsr.notes.first.mediaId
product.extensions.acrisGpsr.notes.first.media


Restriction for variant products

Different manufacturers (or all other information) per variant are currently not taken into account. All information is taken from the main product.
If you need help with this, please send us a support request via account.shopware.com.

 

Version
Required Shopware version
Published on
Changelog
Version
3.1.7
Required Shopware version
Published on
Required Shopware version
>=6.7.0.0 <6.8.0.0
Published on
12 January 2026
Changelog

- Code optimizations.

Version
3.1.6
Required Shopware version
Published on
Required Shopware version
>=6.7.0.0 <6.8.0.0
Published on
18 November 2025
Changelog

- Optimized admin.

Version
3.1.5
Required Shopware version
Published on
Required Shopware version
>=6.7.0.0 <6.8.0.0
Published on
13 October 2025
Changelog

- A bug in the "Link behavior of the brand" select field has been fixed.

Version
3.1.4
Required Shopware version
Published on
Required Shopware version
>=6.7.0.0 <6.8.0.0
Published on
9 September 2025
Changelog

- Improved plugin compatibility with Shopware 6.7.

Version
3.1.3
Required Shopware version
Published on
Required Shopware version
>=6.7.0.0 <6.8.0.0
Published on
5 September 2025
Changelog

- Improved dropdown styling.

- Code optimizations.

Version
3.1.2
Required Shopware version
Published on
Required Shopware version
>=6.7.0.0 <6.8.0.0
Published on
27 August 2025
Changelog

- Adds versionId for manufacturer association.

Version
3.1.1
Required Shopware version
Published on
Required Shopware version
>=6.7.0.0 <6.8.0.0
Published on
30 July 2025
Changelog

- Fixed icon compatibility with other plugins.

Version
3.1.0
Required Shopware version
Published on
Required Shopware version
>=6.7.0.0 <6.8.0.0
Published on
28 July 2025
Changelog

- Add possiblity to show alternative manufacturer in product view.

Version
3.0.6
Required Shopware version
Published on
Required Shopware version
>=6.7.0.0 <6.8.0.0
Published on
11 July 2025
Changelog

- Improved plugin compatibility with Shopware 6.7.

Version
3.0.5
Required Shopware version
Published on
Required Shopware version
>=6.7.0.0 <6.8.0.0
Published on
3 July 2025
Changelog

- Improved plugin compatibility with Shopware 6.7.

Version
3.0.4
Required Shopware version
Published on
Required Shopware version
>=6.7.0.0 <6.8.0.0
Published on
2 June 2025
Changelog

- Optimization of the fallback mechanism when custom fields on the product are filled with empty text.

Version
3.0.3
Required Shopware version
Published on
Required Shopware version
>=6.7.0.0 <6.8.0.0
Published on
21 May 2025
Changelog

- Deprecated hash class has been removed.

Version
3.0.2
Required Shopware version
Published on
Required Shopware version
>=6.7.0.0 <6.8.0.0
Published on
19 May 2025
Changelog

- Optimised caching functionality.

Version
3.0.1
Required Shopware version
Published on
Required Shopware version
>=6.7.0.0 <6.8.0.0
Published on
15 May 2025
Changelog

- GPSR information is now also loaded for Shopware product exports for additional sales channels and is available in the product data under product.extensions.acrisGpsr.

Version
3.0.0
Required Shopware version
Published on
Required Shopware version
>=6.7.0.0 <6.8.0.0
Published on
10 May 2025
Changelog

- Compatibility with Shopware 6.7.

- Support for the following languages: de-DE, en-GB, nl-NL, fr-FR, es-ES, fi-FI, nn-NO, sv-SE, cs-CZ, pt-PT, tr-TR, da-DK, it-IT, pl-PL, bs-BA

Version
2.15.5
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 <6.7.0.0
Published on
10 February 2026
Changelog

- Fixed an issue that the product properties were not loaded.

Version
2.15.4
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 <6.7.0.0
Published on
13 January 2026
Changelog

- FIxes an issue with updating SEO URLs on products.

Version
2.15.3
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 <6.7.0.0
Published on
31 October 2025
Changelog

- Improves plugin compatibility.

Version
2.15.2
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 <6.7.0.0
Published on
5 September 2025
Changelog

- Improved dropdown styling.

Version
2.15.1
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 <6.7.0.0
Published on
27 August 2025
Changelog

- Adds versionId for manufacturer association.

Version
2.15.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 <6.7.0.0
Published on
28 July 2025
Changelog

- Add possiblity to show alternative manufacturer in product view.

Version
2.14.11
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 <6.7.0.0
Published on
2 June 2025
Changelog

- Optimization of the fallback mechanism when custom fields on the product are filled with empty text.

Version
2.14.10
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 <6.7.0.0
Published on
21 May 2025
Changelog

- Deprecated hash class has been removed.

Version
2.14.9
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
15 May 2025
Changelog

- GPSR information is now also loaded for Shopware product exports for additional sales channels and is available in the product data under product.extensions.acrisGpsr.

Version
2.14.8
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
24 April 2025
Changelog

- Code optimizations.

Version
2.14.7
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
24 March 2025
Changelog

- Improved compatibility with ACRIS Manufacturer plugin.

Version
2.14.6
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
19 March 2025
Changelog

- Code optimizations.

Version
2.14.5
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
18 March 2025
Changelog

- Code optimizations.

Version
2.14.4
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
18 March 2025
Changelog

- Improved compatibility of the admin view with Shopware 6.6.10.0.

Version
2.14.3
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
18 March 2025
Changelog

- Fixed an issue where data wasn't properly removed when uninstalling the plugin.

Version
2.14.2
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
28 February 2025
Changelog

- Fixes an issue with not being able to uninstall the plugin.

Version
2.14.1
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
17 February 2025
Changelog

- JTL WaWi compatibility improved.

Version
2.14.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
14 February 2025
Changelog

- Improves plugin compatibility.

- Adds new custom fields for ERP.

- Adds new plugin configuration for using the GPSR data imported by ERP.

Version
2.13.5
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
4 February 2025
Changelog

- Fixes broken info text display in the plugin configuration.

Version
2.13.4
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
3 February 2025
Changelog

- Fixed an inheritance issue with the product tab title in admin.

Version
2.13.3
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
31 January 2025
Changelog

- Added default values for config.

Version
2.13.2
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
28 January 2025
Changelog

- Bugfix fixed product tab title in admin.

Version
2.13.1
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
27 January 2025
Changelog

- Bugfix fixed product tab title in admin.

Version
2.13.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
23 January 2025
Changelog

- Added configuration for set and show/hide GPSR Product Type;Product Warning Note,Product Safety Note,Product Important infomration.

Version
2.12.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
21 January 2025
Changelog

- Added configuration for display gpsr information at product in admin.

Version
2.11.3
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
16 January 2025
Changelog

- Fixed the inheritance of GPSR fields on the admin product detail page.

Version
2.11.2
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
16 January 2025
Changelog

- Bugfix fixed SEO url change.

Version
2.11.1
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
13 January 2025
Changelog

- Adds validation for the manufacturer Shopware link field of the "ACRIS GPSR: Manufacturer" import / export profile.

Version
2.11.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
13 January 2025
Changelog

- Adds new "ACRIS GPSR: Manufacturer" import / export profile.

Version
2.10.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
9 January 2025
Changelog

- Added telephone link and email link.

Version
2.9.1
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
19 December 2024
Changelog

- Bugfix fixed product GPSR fileds inheritance.

Version
2.9.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
5 December 2024
Changelog

- Adds new "ACRIS GPSR: Product" import / export profile.

Version
2.8.1
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
5 December 2024
Changelog

- Bugfix fixed missing column error

- Bugfix fixed tab error

Version
2.8.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
4 December 2024
Changelog

- Added configuration to show document as list.

- Added configuration to show and set document title.

Version
2.7.3
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
27 November 2024
Changelog

- Bugfix removed unnecessary columns.

Version
2.7.2
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
21 November 2024
Changelog

- Bugfix fixed edit close title for a file in admin.

- Bugfix fixed compatibility with AcrisProductDownload.

Version
2.7.1
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
18 November 2024
Changelog

- Bugfix fixed to show tab when content is empty for notes/warning.

Version
2.7.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
14 November 2024
Changelog

- It is now possible to import a manufacturer.

Version
2.6.1
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
13 November 2024
Changelog

- Added check if custom filed exits during install.

Version
2.6.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
12 November 2024
Changelog

- It is possible now to add a file name which should be shown on the frontend.

Version
2.5.2
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
11 November 2024
Changelog

- Optimization of the modal window integration.

Version
2.5.1
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
11 November 2024
Changelog

- Linked files are no longer downloaded immediately in the storefront, but are opened in a new tab.

- For linked files, the file name is now displayed in the storefront without an additional parameter.

- The GPSR document upload in the admin has been removed from the manufacturer again.

- Fixes an issue where the responsible person could not be opened in the GPSR module in the admin.

Version
2.5.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
8 November 2024
Changelog

- Added option to upload documents for GPSR information.

Version
2.4.1
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
6 November 2024
Changelog

- Fixed hiding GPSR information in mobile views.

- A heading is now displayed for the product type.

Version
2.4.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
6 November 2024
Changelog

- Allows GPSR information specified on the manufacturer or product to be hidden via the plugin settings.

- Fixes a problem where tabs were displayed twice if the display was configured in a separate GPSR tab.

- Allows you to configure the display position of the GPSR tab.

Version
2.3.8
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
4 November 2024
Changelog

- Fixed offcanvas GPSR content not scrollable on mobile viewports.

Version
2.3.7
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
31 October 2024
Changelog

- Improved compatibility with plugins on product pages does not allow a preselected variant.

- Fixes a problem when opening variants in the administration.

Version
2.3.6
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
24 October 2024
Changelog

- Fixes a problem when loading GPSR information for products and manufacturers from the shop default language as fallback if no content was specified for the respective language.

Version
2.3.5
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
22 October 2024
Changelog

- Fixes a possible problem when loading the GPSR information from the manufacturer in Admin.

Version
2.3.4
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
7 October 2024
Changelog

- Fixed issue when creating new manufacturer in administration.

Version
2.3.3
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
4 October 2024
Changelog

- New options for configuring GPRS information in tabs

Version
2.3.2
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
4 October 2024
Changelog

- Improved tab content layout in Storefront.

Version
2.3.1
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
4 October 2024
Changelog

- Fixed manufacturer data not saving in administration.

Version
2.3.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
3 October 2024
Changelog

- Added display settings for GPSR loaded from manufacturers and products in plugin configuration.

Version
2.2.1
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
12 September 2024
Changelog

- Fixes a possible problem if custom fields are not filled

- Layout of the warning/safety instructions is adopted in the GPSR tab

- Twig blocks have been added

Version
2.2.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
11 September 2024
Changelog

- New setting to display the GPSR information (manufacturer, responsible person, warning/safety notes) all in one tab

Version
2.1.1
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
10 September 2024
Changelog

- Code optimizations in the administration and in the storefront

- Caching has been implemented

Version
2.1.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
6 September 2024
Changelog

- Manufacturer link behavior has been implemented

- Optimization of the administration

Version
1.11.2
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
21 May 2025
Changelog

- Bugfix fixed product tab title in admin.

Version
1.11.1
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
25 February 2025
Changelog

- Bugfix fixed SEO url change

Version
1.11.0
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
14 February 2025
Changelog

- Improves plugin compatibility.

- Adds new custom fields for ERP.

- Adds new plugin configuration for using the GPSR data imported by ERP.

Version
1.10.0
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
15 January 2025
Changelog

- Added configuration for display gpsr information at product in admin.

Version
1.9.1
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
9 January 2025
Changelog

- Bugfix fixed gpsr manufacturer url link.

Version
1.9.0
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
9 January 2025
Changelog

- Added telephone link and email link.

Version
1.8.2
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
19 December 2024
Changelog

- Bugfix fixed product GPSR fileds inheritance.

Version
1.8.1
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
5 December 2024
Changelog

- Bugfix fixed missing column error

- Bugfix fixed tab error

Version
1.8.0
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
4 December 2024
Changelog

- Added configuration to show document as list.

- Added configuration to show and set document title.

Version
1.7.3
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
2 December 2024
Changelog

- Bugfix fixed edit close title for a file in admin.

- Bugfix fixed compatibility with AcrisProductDownload.

Version
1.7.2
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
27 November 2024
Changelog

- Bugfix removed unnecessary columns.

Version
1.7.1
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
18 November 2024
Changelog

- Bugfix fixed to show tab when content is empty for notes/warning.

Version
1.7.0
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
14 November 2024
Changelog

- It is now possible to import a manufacturer.

Version
1.6.0
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
12 November 2024
Changelog

- It is possible now to add a file name which should be shown on the frontend.

Version
1.5.2
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
11 November 2024
Changelog

- Optimization of the modal window integration.

Version
1.5.1
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
11 November 2024
Changelog

- Linked files are no longer downloaded immediately in the storefront, but are opened in a new tab.

- For linked files, the file name is now displayed in the storefront without an additional parameter.

- The GPSR document upload in the admin has been removed from the manufacturer again.

Version
1.5.0
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
8 November 2024
Changelog

- Added option to upload documents for GPSR information.

Version
1.4.4
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
6 November 2024
Changelog

- Fixed hiding GPSR information in mobile views.

- A heading is now displayed for the product type.

Version
1.4.3
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
6 November 2024
Changelog

- Fixes a possible problem of a double tab display.

Version
1.4.2
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
6 November 2024
Changelog

- Fixes a problem where the first tab was not labelled as active.

- Allows GPSR information specified on the manufacturer or product to be hidden via the plugin settings.

Version
1.4.1
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
6 November 2024
Changelog

- Fixes a problem with the display of duplicate tabs when ‘Own tab’ was selected for the content display.

Version
1.4.0
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
6 November 2024
Changelog

- Fixes a problem where tabs were displayed twice if the display was configured in a separate GPSR tab.

- Allows you to configure the display position of the GPSR tab.

Version
1.3.4
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
4 November 2024
Changelog

- Fixed offcanvas GPSR content not scrollable on mobile viewports.

Version
1.3.3
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
31 October 2024
Changelog

- Improved compatibility with plugins on product pages does not allow a preselected variant.

- Fixes a problem when opening variants in the administration.

Version
1.3.2
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
24 October 2024
Changelog

- Fixes a problem when loading GPSR information for products and manufacturers from the shop default language as fallback if no content was specified for the respective language.

Version
1.3.1
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
22 October 2024
Changelog

- Fixes a possible problem when loading the GPSR information from the manufacturer in Admin.

Version
1.3.0
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
4 October 2024
Changelog

- New options for configuring GPRS information in tabs.

Version
1.2.1
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
4 October 2024
Changelog

- Improved tab content layout in Storefront.

- Fixed manufacturer data not saving in administration.

Version
1.2.0
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
3 October 2024
Changelog

- Added display settings for GPSR loaded from manufacturers and products in plugin configuration.

Version
1.1.0
Required Shopware version
Published on
Required Shopware version
>=6.5.0.0 <6.6.0.0
Published on
12 September 2024
Changelog

- Compatibility with Shopware 6.5.

Version
1.0.0
Required Shopware version
Published on
Required Shopware version
>=6.6.0.0 < 6.7.0.0
Published on
5 September 2024
Changelog

- Release

10 of 10 reviews

Average rating of 5 out of 5 stars


100%

0%

0%

0%

0%


Leave a review!

Share your experiences with other customers.


10 reviews

24 June 2025 07:09

Review with rating of 5 out of 5 stars

Macht exakt, was es soll. Blitzartiger Support. Einfach klasse!

-

15 May 2025 11:31

Review with rating of 5 out of 5 stars

Wirklich toller Service, volle Empfehlung !

Vielen Dank für euren super Service und die Erweiterung der Funktionalität. Wir haben mit euch zusammen den aufwand der GPSR nachkommen ERHEBLICH verringern können. Meine volle Empfehlung !

28 February 2025 16:49

Review with rating of 5 out of 5 stars

Einfach genial

Unterstützt dynamische Produktgruppen und dadurch wird es genial flexibel und spart unheimlich viel Administrationsarbeit, nicht nur beim ersten Implementieren, sondern gerade auch beim späteren Hinzufügen oder Ändern von Produktinformationen. 100% empfehlenswert.

17 February 2025 16:16

Review with rating of 5 out of 5 stars

Top-Support, reagiert sogar kurzfristig auf Feature-Vorschläge für JTL-Wawi

Wir haben das Plugin bereits länger im Einsatz und sind nun restlos glücklich. Acris hat die Unterstützung der durch JTL-Wawi und JTL-Connector übermittelten Hersteller-Daten integriert. Dadurch können die GPSR Hersteller Daten jetzt in der JTL-Wawi verwaltet werden und werden durch dieses Plugin im Shopware angezeigt.

11 February 2025 19:26

Review with rating of 5 out of 5 stars

Alles in allem einfach sehr gut

Absolut gut durchdacht, fehlende Export Funktion wurde lange vor dem Stichtag nach kurzem Telefonat sofort und direkt umgesetzt.
Sehr freundlicher Kontakt fairer Preis.
Ist bereits mehrfach weiterempfohlen.
Ein großes Lob und ein weiter so ist mehr als angebracht.
Beste Grüße aus dem Norden

22 January 2025 07:18

Review with rating of 5 out of 5 stars

5 Sterne - Schnelle Umsetzung und hervorragender Support!

Das Plugin hat uns enorm geholfen, die Anforderungen der Produktverordnung schnell und effizient umzusetzen. Besonders beeindruckt hat uns der schnelle und flexible Support bei Änderungswünschen.

Wir hatten beispielsweise das Problem, dass wir die Felder bei den Artikeln nicht benötigten, da wir die Daten direkt übergreifend über die Hersteller gepflegt haben. Diese Felder nahmen jedoch viel Platz ein und man musste sehr weit scrollen, um zu den relevanten Bereichen wie Produktbildern oder Preisen zu gelangen.

Nach dem Einstellen eines Tickets hat ACRIS innerhalb kurzer Zeit eine neue Version des Plugins bereitgestellt, bei der die Felder im Standard einfach eingeklappt sind. Das spart uns nicht nur Zeit, sondern verbessert auch die Übersichtlichkeit erheblich. :)

Klare Empfehlung für alle, die ein zuverlässiges Plugin mit erstklassigem Support suchen! Danke euch!

22 January 2025 05:23

Review with rating of 5 out of 5 stars

Ganz klare Kaufempfehlung

Mit diesem Plugin hat ACRIS erneut eine sehr gute Arbeit gemacht. Das Plugin erfüllt all meine Erwartungen und setzt alle Anforderungen sehr gut um. Die stetige Weiterentwicklung und der Top Support führen insgesamt zu einer ganz klaren Kaufempfehlung für dieses Plugin.

15 January 2025 12:07

Review with rating of 5 out of 5 stars

Funktion TOP! Service TOP! Support TOP!

Das GPSR-Plugin von ACRIS ist ein herausragendes Beispiel für durchdachtes und äußerst flexibles Plugin. Die Möglichkeiten des Plugins sind vielfältig und lassen sich problemlos an die individuellen Bedürfnisse anpassen. ACRIS entwickelt nicht nur Produkte, sondern liefert Lösungen für seine Kunden.

Besonders beeindruckend ist der Service von ACRIS! Wir hatten eine Anfrage zu einem weiteren Plugin, um ein spezifisches Szenario abzudecken. Statt einfach ein neues Plugin zu verkaufen, wurde uns mitgeteilt, dass wir unser gewünschtes Szenario bereits mit den bestehenden Möglichkeiten des GPSR-Plugins umsetzen können. Ein außergewöhnlicher Kundenservice, der zeigt, wie viel Wert ACRIS auf langfristige Kundenzufriedenheit legt.

Dank dieser Erfahrung steht für uns fest: Wenn wir künftig nach neuen Plugins suchen, ist ACRIS unsere erste Wahl. Mit ihrem außergewöhnlichen Service setzen sie Maßstäbe.

18 December 2024 14:23

Review with rating of 5 out of 5 stars

Update - Sicherheitsinformationen für alle Produkte gleichzeitig eingeben

Großes Lob an Acris - Der Support von Acris hat sich sehr schnell und äußerst freundlich mit uns in Verbindung gesetzt. Die von uns beanstandete fehlende Funktion lässt sich, sowie noch viele weitere Informationen darüber hinaus, sehr wohl einstellen. Wir sind daher sehr zufrieden mit diesem Plugin von Acris und bitten den Support von Shopware unsere voreilig erstellte schlechte Bewertung zu löschen! Vielen Dank

Gerne empfehlen wir dieses Plugin weiter.

22 October 2024 16:49

Review with rating of 5 out of 5 stars

Sehr gute Umsetzung, absolut schneller und zuverlässiger Support.

Das Plugin bietet unzählige Einstellungsmöglichkeiten. Es bleiben kaum mehr Wünsche offen. Ich hatte schon mehrmals den Support kontaktiert und erhalte sehr schnelle Rückmeldung. Fast alle Wünsche wurden sofort umgesetzt. Bislang kann ich mich nicht beschweren. Es wäre noch toll, wenn auf eine einfache Art und Weise pdf-Dateien (Datenblätter etc.) hochgeladen werden können im Tab "GPSR". Weiter so! Da habe ich ein gutes Gefühl bei weiteren Plugins von diesem Anbieter.

The plugin saves the GPSR information on the additional fields on the product. Here is an example call of the Sync API on the product:

{
    "key": "write",
    "action": "upsert",
    "entity": "product",
    "payload": [
        {
            "id": "2a88d9b59d474c7e869d8071649be43c",
            "customFields": {
                "acris_gpsr_product_type": "Product type and product identifiers",
                "acris_gpsr_product_manufacturer": "Manufacturer information",
                "acris_gpsr_product_contact": "Responsible person (EU)",
                "acris_gpsr_product_hint_warning": "Warning note",
                "acris_gpsr_product_hint_safety": "Safety note",
                "acris_gpsr_product_hint_information": "Important information"
            },
            "acrisGpsrDownloads": [
                {
                    "mediaId": "0198552916a47a52a355375995611bdb",
                    "gpsrType": "warning_note"
                },
                {
                    "mediaId": "0198552916a47a52a355375995611bdb",
                    "gpsrType": "security_note"
                },
                {
                    "mediaId": "0198552916a47a52a355375995611bdb",
                    "gpsrType": "important_info"
                }
            ]
        }
    ]
}
The documents are contained in the `acrisGpsrDownloads` node. The 3 types of documents are "warning_note," "security_note," and "important_info." The media files must already be uploaded to the shopware media system at the time of the call, and the UUID must be known.

Skip product gallery

Customers also bought

Control delivery information and delivery times with rules and dynamic product groups
CMS Preview function - Products, Categories and Shopping Experience
MUST HAVE
CMS - saving & managing Shopping Experiences Blocks and Elements + copy & paste
TinyMCE HTML Editor with Shopware Entities and Formate Template
MUST HAVE
Youtube & Vimeo Videos on product detail page integration