diff --git a/public/typo3conf/ext/ep_products/Classes/Controller/ProductController.php b/public/typo3conf/ext/ep_products/Classes/Controller/ProductController.php
index 31cc1cbd..7be5cbca 100644
--- a/public/typo3conf/ext/ep_products/Classes/Controller/ProductController.php
+++ b/public/typo3conf/ext/ep_products/Classes/Controller/ProductController.php
@@ -144,6 +144,7 @@ class ProductController extends ActionController
'product' => $product,
'isProductWithExcludedConcept' => $isProductWithExcludedConcept,
'isProductWithNoInfoConcept' => $isProductWithNoInfoConcept,
+ 'currentPageUid' => $GLOBALS['TSFE']->id,
]);
}
diff --git a/public/typo3conf/ext/ep_products/Classes/Domain/Serialization/Hotel.php b/public/typo3conf/ext/ep_products/Classes/Domain/Serialization/Hotel.php
index 0fee39f2..9de95094 100644
--- a/public/typo3conf/ext/ep_products/Classes/Domain/Serialization/Hotel.php
+++ b/public/typo3conf/ext/ep_products/Classes/Domain/Serialization/Hotel.php
@@ -47,6 +47,7 @@ class Hotel
$hotel['category'] = \EP\EpProducts\Domain\Model\Hotel::$categoryLabels[$entity->getCategory()];
$hotel['type'] = \EP\EpProducts\Domain\Model\Hotel::$typeLabels[$entity->getType()];
$hotel['description'] = SerializationUtility::sanitizeText($entity->getDescription());
+ $hotel['roomtypes'] = SerializationUtility::sanitizeText($entity->getRoomTypes());
$hotel['features'] = SerializationUtility::sanitizeText($entity->getFeatures());
$hotel['images']['image'] = SerializationUtility::preprocessImages($entity->getResellerImages());
diff --git a/public/typo3conf/ext/ep_theme/Configuration/RTE/Default.yaml b/public/typo3conf/ext/ep_theme/Configuration/RTE/Default.yaml
index c4d8d244..e50e078a 100644
--- a/public/typo3conf/ext/ep_theme/Configuration/RTE/Default.yaml
+++ b/public/typo3conf/ext/ep_theme/Configuration/RTE/Default.yaml
@@ -5,6 +5,7 @@ imports:
editor:
config:
+ disableNativeSpellChecker: false
contentsCss:
- "EXT:ep_theme/Resources/Public/css/rte.css"
diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js
index 629853b2..baa96e25 100644
--- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js
+++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js
@@ -300,7 +300,6 @@ new Vue({
$window.on('resize', () => {
this.setMobileMode();
this.initCarousels();
- this.initFilterpanel();
this.initDropdownMenuBehavior();
let newBackgroundImageMode = this.getBackgroundImageMode();
if (this.backgroundImageMode !== newBackgroundImageMode) {
diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html
index 66c77cc8..3fdda853 100644
--- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html
+++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Product/Detail.html
@@ -175,7 +175,9 @@
diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Reseller/Copypaste.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Reseller/Copypaste.html
index 962ac8e2..766b1af3 100644
--- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Reseller/Copypaste.html
+++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Reseller/Copypaste.html
@@ -99,6 +99,10 @@