Third Party Extractors
This Bundle comes with some pre configured extractors.
Complexity
These extractors will be enabled on cache build level. If any supported bundle isn't installed, no service will be included - so no overload here!
Supported Bundles
This is an accurate list of supported bundles!
OpenDxp Ecommerce Bundle
If the opendxp ecommerce bundle is installed, product/category name/short description and og data extractors will be added automatically.
Disable them via disable_default_extractors: true.
- Bundle: https://github.com/open-dxp/ecommerce-bundle
- Object Types:
EcommerceProduct,EcommerceCategory - Extractors:
- Title & Description Extractor (
opendxp_ecommerce_title_description) - OG Type, Title, Description and Image Extractor (
opendxp_ecommerce_og_tags)
- Title & Description Extractor (
Configure Ecommerce Extractor
opendxp_advanced_seo:
meta_data_configuration:
meta_data_integrator:
objects:
enabled: true
data_classes:
- EcommerceProduct
- EcommerceCategory
Disable Default Ecommerce Extractor
opendxp_advanced_seo:
meta_data_configuration:
meta_data_provider:
third_party:
opendxp_ecommerce:
disable_default_extractors: true
OpenDxp News Bundle
Pro Tip: Hide the "metaTitle" and "metaDescription" fields in "NewsEntry" and "NewsCategory" (category SEO fields are unused fields by default) class since you should use the SEO-Tab only! If you're going to delete them from your entry class definition (Only on new installations otherwise you'll lose your data!), you need to add these methods to an extended class first, otherwise the news bundle will throw an exception!
- Bundle: https://github.com/open-dxp/news-bundle
- Object Types:
NewsEntry - Extractors:
- Entry Meta Extractor (
opendxp_news_entry_meta, still using theNewsBundle\GeneratorService to generate metadata and keep bc)
- Entry Meta Extractor (
Configure News Extractor
opendxp_advanced_seo:
meta_data_configuration:
meta_data_integrator:
objects:
enabled: true
data_classes:
- NewsEntry
Disable Default News Extractor
opendxp_advanced_seo:
meta_data_configuration:
meta_data_provider:
third_party:
opendxp_news:
disable_default_extractors: true