Important

You are browsing the documentation for version 4.2 of OroCommerce, OroCRM and OroPlatform, which is no longer maintained. Read version 5.1 (the latest LTS version) of the Oro documentation to get up-to-date information.

See our Release Process documentation for more information on the currently supported and upcoming releases.

How to Replace a Logo and a Favicon in the Storefront

The following article describes how to replace logo and favicon images in your custom OroCommerce application. Please follow all the steps outlines below to replace the favicon and the logo.

This topic assumes that you have previously created a custom application, a bundle, and a storefront theme, as described in the Storefront Customization topic.

Note

This tutorial is suitable for both cases: when you have created your own custom storefront theme, and when you need to change an out-of-the-box one. However, creating your own theme is recommended as it enables managing your storefront appearance easily.

Replace Favicons

  1. Place new storefront favicon images into your bundle`s public assets folder (e.g., Resources/public/{your_theme_id}/favicons/):

    The main favicon image:

    • Resources/public/default/favicons/favicon.ico

    Additional favicon images and a web app manifest file with specified icons:

    Note

    For the detailed description of a purpose and role of additional favicons and the manifest.json file, check out an article on Adding favicons in a multi-browser multi-platform world.

    • Resources/public/default/favicons/apple-touch-icon-57x57.png

    • Resources/public/default/favicons/apple-touch-icon-60x60.png

    • Resources/public/default/favicons/apple-touch-icon-72x72.png

    • Resources/public/default/favicons/apple-touch-icon-76x76.png

    • Resources/public/default/favicons/apple-touch-icon-114x114.png

    • Resources/public/default/favicons/apple-touch-icon-144x144.png

    • Resources/public/default/favicons/apple-touch-icon-120x120.png

    • Resources/public/default/favicons/apple-touch-icon-152x152.png

    • Resources/public/default/favicons/apple-touch-icon-180x180.png

    • Resources/public/default/favicons/favicon-32x32.png

    • Resources/public/default/favicons/android-chrome-192x192.png

    • Resources/public/default/favicons/favicon-96x96.png

    • Resources/public/default/favicons/favicon-16x16.png

    • Resources/public/default/favicons/manifest.json

    • Resources/public/default/favicons/mstile-144x144.png

    Example of a manifest.json file:

    {
        "name": "Acme Inc Storefront",
        "short_name": "Acme Store",
        "icons": [
            {
                "src": "{{ site.baseurl }}/bundles/app/default/favicons/favicon-32x32.png",
                "sizes": "32x32",
                "type": "image/png"
            },
            {
                "src": "{{ site.baseurl }}/bundles/app/default/favicons/android-chrome-192x192.png",
                "sizes": "192x192",
                "type": "image/png"
            }
        ],
        "start_url": "/",
        "display": "standalone"
    }
    
  2. Create a Layout Update file to replace other specific favicons in the storefront.

Important

Please make sure to remove the default Oro favicons via the layout update, otherwise, they will be used instead of the new ones. Also, please, make sure to change the option id: favicon_theme_icon. This option will change background color for the top bar on andriod devices.

src/AppBundle/Resources/views/layouts/{your_theme_id}/favicon.yml
    layout:
        actions:
            - '@setOption':
                id: apple_57x57
                optionName: href
                optionValue: '=data["asset"].getUrl("bundles/app/default/favicons/apple-touch-icon-57x57.png")'
            - '@setOption':
                id: apple_60x60
                optionName: href
                optionValue: '=data["asset"].getUrl("bundles/app/default/favicons/apple-touch-icon-60x60.png")'
            - '@setOption':
                id: apple_72x72
                optionName: href
                optionValue: '=data["asset"].getUrl("bundles/app/default/favicons/apple-touch-icon-72x72.png")'
            - '@setOption':
                id: apple_76x76
                optionName: href
                optionValue: '=data["asset"].getUrl("bundles/app/default/favicons/apple-touch-icon-76x76.png")'
            - '@setOption':
                id: apple_114x114
                optionName: href
                optionValue: '=data["asset"].getUrl("bundles/app/default/favicons/apple-touch-icon-114x114.png")'
            - '@setOption':
                id: apple_144x144
                optionName: href
                optionValue: '=data["asset"].getUrl("bundles/app/default/favicons/apple-touch-icon-144x144.png")'
            - '@setOption':
                id: apple_120x120
                optionName: href
                optionValue: '=data["asset"].getUrl("bundles/app/default/favicons/apple-touch-icon-120x120.png")'
            - '@setOption':
                id: apple_152x152
                optionName: href
                optionValue: '=data["asset"].getUrl("bundles/app/default/favicons/apple-touch-icon-152x152.png")'
            - '@setOption':
                id: apple_180x180
                optionName: href
                optionValue: '=data["asset"].getUrl("bundles/app/default/favicons/apple-touch-icon-180x180.png")'
            - '@setOption':
                id: favicon_32x32
                optionName: href
                optionValue: '=data["asset"].getUrl("bundles/app/default/favicons/favicon-32x32.png")'
            - '@setOption':
                id: android_chrome_192x192
                optionName: href
                optionValue: '=data["asset"].getUrl("bundles/app/default/favicons/android-chrome-192x192.png")'
            - '@setOption':
                id: favicon_96x96
                optionName: href
                optionValue: '=data["asset"].getUrl("bundles/app/default/favicons/favicon-96x96.png")'
            - '@setOption':
                id: favicon_16x16
                optionName: href
                optionValue: '=data["asset"].getUrl("bundles/app/default/favicons/favicon-16x16.png")'
            - '@setOption':
                id: favicon_manifest
                optionName: href
                optionValue: '=data["asset"].getUrl("bundles/app/default/favicons/manifest.json")'
            - '@setOption':
                id: msapplication_tileimage
                optionName: content
                optionValue: '=data["asset"].getUrl("bundles/app/default/favicons/mstile-144x144.png")'
            - '@setOption':
                id: favicon_theme_icon
                optionName: content
                optionValue: '#ed2d27'
            - '@remove':
                id: favicon_mask_icon
  1. Rebuild the assets:

    Clear the cache to reload the Yaml configuration files:

    php bin/console cache:clear
    

    Publish images to the public web folder:

    php bin/console assets:install --symlink