We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Magento Version : 2.4.1
Module Elasticsuite Cms Search Version : 2.2.8
Environment : Developer
Third party modules :
The text was updated successfully, but these errors were encountered:
Of course, there is possibility to solve this issue by injecting 'NullStripper' in DI:
<?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <type name="Smile\ElasticsuiteCms\Model\Page\Indexer\Fulltext\Action\Full"> <arguments> <argument name="stripTags" xsi:type="object">Drinks\StorefrontBridge\Magento\Framework\Filter\RemoveTagsNull</argument> </arguments> </type> </config>
<?php namespace Drinks\StorefrontBridge\Magento\Framework\Filter; class RemoveTagsNull extends \Magento\Framework\Filter\RemoveTags { public function filter($value) { return $value; } }
but it would be really nice if this could be configured in the admin panel.
Sorry, something went wrong.
or even better, to have both stripped and not stripped data in index
No branches or pull requests
Preconditions
Magento Version : 2.4.1
Module Elasticsuite Cms Search Version : 2.2.8
Environment : Developer
Third party modules :
Steps to reproduce
Expected result
Actual result
The text was updated successfully, but these errors were encountered: