Standard CMS-Seite für Kategorien im Globalsys Connector für Shopware 6
Führe den nachfolgenden Code in der Datenbank aus, um mit unserem Plugin "Globalsys Connector für Shopware 6" standardmäßig eine CMS-Seite / Erlebniswelt zu hinterlegen.
Ersetze "ERLEBNISWELT_ID" durch die ID der Erlebniswelt, die Standardmäßig hinterlegt werden soll. Die ID der Erlebniswelt findest Du in der Browserzeile, wenn Du die Erlebniswelt zum Bearbeiten geöffnet hast.
INSERT INTO `lenz_globalsys_connector_config`
(
`id`,
`configuration_key`,
`configuration_value`,
`created_at`,
)
SELECT
UNHEX(LOWER(REPLACE(UUID(), "-", ""))) as `id`,
"category.defaultCmsPageId" as `configuration_key`,
'{"_value": "ERLEBNISWELT_ID"}' as `configuration_value`,
NOW() as `created_at`