├── .all-contributorsrc ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── coding-standard.yml │ └── integration.yml ├── .gitignore ├── Block ├── Imprint │ ├── Content.php │ └── Field.php ├── Price │ └── Details.php └── Product │ └── Delivery.php ├── CHANGELOG.md ├── Command └── SetupRunCommand.php ├── Helper └── Data.php ├── LICENSE.md ├── Model ├── Config.php ├── Config │ ├── Converter.php │ ├── Reader.php │ └── SchemaLocator.php ├── ConfigInterface.php ├── Setup │ └── SubProcessor │ │ ├── AbstractSubProcessor.php │ │ ├── AgreementsSubProcessor.php │ │ ├── CmsSubProcessor.php │ │ ├── EmailSubProcessor.php │ │ ├── SubProcessorInterface.php │ │ ├── SubProcessorPool.php │ │ ├── SystemConfigSubProcessor.php │ │ └── TaxSubProcessor.php └── System │ ├── Config.php │ └── Config │ └── Source │ └── Cms │ └── Page.php ├── Observer └── AddProductAttributeVisibleCheckoutObserver.php ├── Plugin ├── Agreements │ └── AfterGetContent.php ├── Catalog │ ├── Block │ │ └── Product │ │ │ └── ListProduct │ │ │ └── AddDeliveryTimePlugin.php │ ├── Helper │ │ └── Product │ │ │ └── Configuration │ │ │ └── AddVisibleInCheckoutAttributesToCustomOptionsPlugin.php │ └── Model │ │ └── Attribute │ │ └── AddVisibleInCheckoutAttributesToAttributeNamesPlugin.php ├── Email │ └── Block │ │ └── Adminhtml │ │ └── Template │ │ └── Edit │ │ └── Form.php └── Pricing │ └── AddPriceDetailsPlugin.php ├── README.md ├── Service ├── GetVisibleCheckoutAttributesService.php ├── GetVisibleCheckoutAttributesServiceInterface.php ├── SetupService.php └── SetupServiceInterface.php ├── Setup ├── InstallData.php ├── InstallSchema.php ├── UpgradeData.php └── UpgradeSchema.php ├── Test ├── Integration │ ├── ModuleConfigTest.php │ └── Observer │ │ └── AddProductAttributeVisibleCheckoutObserverTest.php └── Unit │ ├── Block │ ├── Imprint │ │ └── ContentTest.php │ └── Price │ │ └── DetailsTest.php │ ├── Model │ ├── ConfigTest.php │ └── System │ │ └── ConfigTest.php │ └── Plugin │ └── Catalog │ └── Block │ └── Product │ └── ListProduct │ └── AddDeliveryTimePluginTest.php ├── composer.json ├── etc ├── adminhtml │ ├── events.xml │ └── system.xml ├── config.xml ├── di.xml ├── frontend │ └── di.xml ├── magesetup.xml ├── magesetup.xsd ├── module.xml └── webapi_rest │ └── di.xml ├── i18n ├── de_DE.csv ├── en_US.csv └── template │ └── de │ ├── agreements │ ├── business_terms.html │ └── revocation.html │ ├── blocks │ ├── business_terms.html │ ├── revocation.html │ └── revocation_form.html │ └── pages │ ├── 404.html │ ├── business_terms.html │ ├── imprint.html │ ├── order.html │ ├── payment.html │ ├── privacy.html │ ├── revocation.html │ ├── revocation_form.html │ └── shipping.html ├── registration.php └── view ├── base └── templates │ └── imprint │ ├── address.phtml │ ├── bank.phtml │ ├── communication.phtml │ ├── email_footer.phtml │ ├── legal.phtml │ └── tax.phtml └── frontend ├── layout ├── catalog_category_view.xml ├── catalog_delivery_info.xml ├── catalog_product_view.xml ├── catalogsearch_result_index.xml └── default.xml └── templates └── product └── price └── details.phtml /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/coding-standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/.github/workflows/coding-standard.yml -------------------------------------------------------------------------------- /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /composer.lock 3 | /vendor 4 | -------------------------------------------------------------------------------- /Block/Imprint/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Block/Imprint/Content.php -------------------------------------------------------------------------------- /Block/Imprint/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Block/Imprint/Field.php -------------------------------------------------------------------------------- /Block/Price/Details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Block/Price/Details.php -------------------------------------------------------------------------------- /Block/Product/Delivery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Block/Product/Delivery.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Command/SetupRunCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Command/SetupRunCommand.php -------------------------------------------------------------------------------- /Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Helper/Data.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Model/Config.php -------------------------------------------------------------------------------- /Model/Config/Converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Model/Config/Converter.php -------------------------------------------------------------------------------- /Model/Config/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Model/Config/Reader.php -------------------------------------------------------------------------------- /Model/Config/SchemaLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Model/Config/SchemaLocator.php -------------------------------------------------------------------------------- /Model/ConfigInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Model/ConfigInterface.php -------------------------------------------------------------------------------- /Model/Setup/SubProcessor/AbstractSubProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Model/Setup/SubProcessor/AbstractSubProcessor.php -------------------------------------------------------------------------------- /Model/Setup/SubProcessor/AgreementsSubProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Model/Setup/SubProcessor/AgreementsSubProcessor.php -------------------------------------------------------------------------------- /Model/Setup/SubProcessor/CmsSubProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Model/Setup/SubProcessor/CmsSubProcessor.php -------------------------------------------------------------------------------- /Model/Setup/SubProcessor/EmailSubProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Model/Setup/SubProcessor/EmailSubProcessor.php -------------------------------------------------------------------------------- /Model/Setup/SubProcessor/SubProcessorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Model/Setup/SubProcessor/SubProcessorInterface.php -------------------------------------------------------------------------------- /Model/Setup/SubProcessor/SubProcessorPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Model/Setup/SubProcessor/SubProcessorPool.php -------------------------------------------------------------------------------- /Model/Setup/SubProcessor/SystemConfigSubProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Model/Setup/SubProcessor/SystemConfigSubProcessor.php -------------------------------------------------------------------------------- /Model/Setup/SubProcessor/TaxSubProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Model/Setup/SubProcessor/TaxSubProcessor.php -------------------------------------------------------------------------------- /Model/System/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Model/System/Config.php -------------------------------------------------------------------------------- /Model/System/Config/Source/Cms/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Model/System/Config/Source/Cms/Page.php -------------------------------------------------------------------------------- /Observer/AddProductAttributeVisibleCheckoutObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Observer/AddProductAttributeVisibleCheckoutObserver.php -------------------------------------------------------------------------------- /Plugin/Agreements/AfterGetContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Plugin/Agreements/AfterGetContent.php -------------------------------------------------------------------------------- /Plugin/Catalog/Block/Product/ListProduct/AddDeliveryTimePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Plugin/Catalog/Block/Product/ListProduct/AddDeliveryTimePlugin.php -------------------------------------------------------------------------------- /Plugin/Catalog/Helper/Product/Configuration/AddVisibleInCheckoutAttributesToCustomOptionsPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Plugin/Catalog/Helper/Product/Configuration/AddVisibleInCheckoutAttributesToCustomOptionsPlugin.php -------------------------------------------------------------------------------- /Plugin/Catalog/Model/Attribute/AddVisibleInCheckoutAttributesToAttributeNamesPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Plugin/Catalog/Model/Attribute/AddVisibleInCheckoutAttributesToAttributeNamesPlugin.php -------------------------------------------------------------------------------- /Plugin/Email/Block/Adminhtml/Template/Edit/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Plugin/Email/Block/Adminhtml/Template/Edit/Form.php -------------------------------------------------------------------------------- /Plugin/Pricing/AddPriceDetailsPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Plugin/Pricing/AddPriceDetailsPlugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/README.md -------------------------------------------------------------------------------- /Service/GetVisibleCheckoutAttributesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Service/GetVisibleCheckoutAttributesService.php -------------------------------------------------------------------------------- /Service/GetVisibleCheckoutAttributesServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Service/GetVisibleCheckoutAttributesServiceInterface.php -------------------------------------------------------------------------------- /Service/SetupService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Service/SetupService.php -------------------------------------------------------------------------------- /Service/SetupServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Service/SetupServiceInterface.php -------------------------------------------------------------------------------- /Setup/InstallData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Setup/InstallData.php -------------------------------------------------------------------------------- /Setup/InstallSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Setup/InstallSchema.php -------------------------------------------------------------------------------- /Setup/UpgradeData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Setup/UpgradeData.php -------------------------------------------------------------------------------- /Setup/UpgradeSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Setup/UpgradeSchema.php -------------------------------------------------------------------------------- /Test/Integration/ModuleConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Test/Integration/ModuleConfigTest.php -------------------------------------------------------------------------------- /Test/Integration/Observer/AddProductAttributeVisibleCheckoutObserverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Test/Integration/Observer/AddProductAttributeVisibleCheckoutObserverTest.php -------------------------------------------------------------------------------- /Test/Unit/Block/Imprint/ContentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Test/Unit/Block/Imprint/ContentTest.php -------------------------------------------------------------------------------- /Test/Unit/Block/Price/DetailsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Test/Unit/Block/Price/DetailsTest.php -------------------------------------------------------------------------------- /Test/Unit/Model/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Test/Unit/Model/ConfigTest.php -------------------------------------------------------------------------------- /Test/Unit/Model/System/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Test/Unit/Model/System/ConfigTest.php -------------------------------------------------------------------------------- /Test/Unit/Plugin/Catalog/Block/Product/ListProduct/AddDeliveryTimePluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/Test/Unit/Plugin/Catalog/Block/Product/ListProduct/AddDeliveryTimePluginTest.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/composer.json -------------------------------------------------------------------------------- /etc/adminhtml/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/etc/adminhtml/events.xml -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/frontend/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/etc/frontend/di.xml -------------------------------------------------------------------------------- /etc/magesetup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/etc/magesetup.xml -------------------------------------------------------------------------------- /etc/magesetup.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/etc/magesetup.xsd -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/etc/module.xml -------------------------------------------------------------------------------- /etc/webapi_rest/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/etc/webapi_rest/di.xml -------------------------------------------------------------------------------- /i18n/de_DE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/de_DE.csv -------------------------------------------------------------------------------- /i18n/en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/en_US.csv -------------------------------------------------------------------------------- /i18n/template/de/agreements/business_terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/template/de/agreements/business_terms.html -------------------------------------------------------------------------------- /i18n/template/de/agreements/revocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/template/de/agreements/revocation.html -------------------------------------------------------------------------------- /i18n/template/de/blocks/business_terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/template/de/blocks/business_terms.html -------------------------------------------------------------------------------- /i18n/template/de/blocks/revocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/template/de/blocks/revocation.html -------------------------------------------------------------------------------- /i18n/template/de/blocks/revocation_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/template/de/blocks/revocation_form.html -------------------------------------------------------------------------------- /i18n/template/de/pages/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/template/de/pages/404.html -------------------------------------------------------------------------------- /i18n/template/de/pages/business_terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/template/de/pages/business_terms.html -------------------------------------------------------------------------------- /i18n/template/de/pages/imprint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/template/de/pages/imprint.html -------------------------------------------------------------------------------- /i18n/template/de/pages/order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/template/de/pages/order.html -------------------------------------------------------------------------------- /i18n/template/de/pages/payment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/template/de/pages/payment.html -------------------------------------------------------------------------------- /i18n/template/de/pages/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/template/de/pages/privacy.html -------------------------------------------------------------------------------- /i18n/template/de/pages/revocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/template/de/pages/revocation.html -------------------------------------------------------------------------------- /i18n/template/de/pages/revocation_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/template/de/pages/revocation_form.html -------------------------------------------------------------------------------- /i18n/template/de/pages/shipping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/i18n/template/de/pages/shipping.html -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/registration.php -------------------------------------------------------------------------------- /view/base/templates/imprint/address.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/view/base/templates/imprint/address.phtml -------------------------------------------------------------------------------- /view/base/templates/imprint/bank.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/view/base/templates/imprint/bank.phtml -------------------------------------------------------------------------------- /view/base/templates/imprint/communication.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/view/base/templates/imprint/communication.phtml -------------------------------------------------------------------------------- /view/base/templates/imprint/email_footer.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/view/base/templates/imprint/email_footer.phtml -------------------------------------------------------------------------------- /view/base/templates/imprint/legal.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/view/base/templates/imprint/legal.phtml -------------------------------------------------------------------------------- /view/base/templates/imprint/tax.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/view/base/templates/imprint/tax.phtml -------------------------------------------------------------------------------- /view/frontend/layout/catalog_category_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/view/frontend/layout/catalog_category_view.xml -------------------------------------------------------------------------------- /view/frontend/layout/catalog_delivery_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/view/frontend/layout/catalog_delivery_info.xml -------------------------------------------------------------------------------- /view/frontend/layout/catalog_product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/view/frontend/layout/catalog_product_view.xml -------------------------------------------------------------------------------- /view/frontend/layout/catalogsearch_result_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/view/frontend/layout/catalogsearch_result_index.xml -------------------------------------------------------------------------------- /view/frontend/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/view/frontend/layout/default.xml -------------------------------------------------------------------------------- /view/frontend/templates/product/price/details.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firegento/firegento-magesetup2/HEAD/view/frontend/templates/product/price/details.phtml --------------------------------------------------------------------------------