magento2: favorite icon (A favicon) is missing in Magento 2.4.4 Adobe Commerce

Default favicon is missing in Magento 2.4.4 Adobe Commerce

Preconditions (*)

  1. Magento 2.4.4 Enterprise Edition

Steps to reproduce (*)

  1. Favicon is missing in Address Bar with default magento installation
  2. No icon can be found at path /static/frontend/Magento/luma/en_US/Magento_Enterprise/favicon.ico vendor/magento/module-enterprise/view/frontend/web/favicon.ico

Expected result (*)

image

Actual result (*)

Favicon is missing in Magento 2.4.4 Adobe Commerce after installation

image


Please provide Severity assessment for the Issue as Reporter. This information will help during Confirmation and Issue triage processes.

  • Severity: S0 - Affects critical data or functionality and leaves users without workaround.
  • Severity: S1 - Affects critical data or functionality and forces users to employ a workaround.
  • Severity: S2 - Affects non-critical data or functionality and forces users to employ a workaround.
  • Severity: S3 - Affects non-critical data or functionality and does not force users to employ a workaround.
  • Severity: S4 - Affects aesthetics, professional look and feel, “quality” or “usability”.

About this issue

  • Original URL
  • State: closed
  • Created 2 years ago
  • Reactions: 1
  • Comments: 29 (8 by maintainers)

Most upvoted comments

The Enterprise version introduced a new favicon for admin, but the icon is located only in the “adminhtml” theme while the plugin that replaced the default icon is in the global scope. That’s all.

+++ b/vendor/magento/module-enterprise/etc/adminhtml/di.xml
@@ -9,4 +9,8 @@
     <type name="Magento\Backend\Block\Store\Switcher">
         <plugin name="entrprise_store_switcher_plugin" type="Magento\Enterprise\Model\Plugin\StoreSwitcher"/>
     </type>
+
+    <type name="Magento\Theme\Model\Favicon\Favicon">
+        <plugin name="enterprise_favicon" type="Magento\Enterprise\Model\Plugin\Favicon"/>
+    </type>
 </config>
--- a/vendor/magento/module-enterprise/etc/di.xml
+++ b/vendor/magento/module-enterprise/etc/di.xml
@@ -14,8 +14,5 @@
             </argument>
         </arguments>
     </type>
-    <type name="Magento\Theme\Model\Favicon\Favicon">
-        <plugin name="enterprise_favicon" type="Magento\Enterprise\Model\Plugin\Favicon"/>
-    </type>
     <preference for="Magento\Framework\App\ProductMetadataInterface" type="Magento\Enterprise\Model\ProductMetadata"/>
 </config>

@magento i’m working on this