Tagged: ,

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1395743

    Hello,

    How can I use different sizes of favicons within the Enfold theme?

    For example I want to use these sizes:
    – android-chrome-192×192.png
    – android-chrome-512×512.png
    – apple-touch-icon.png
    – favicon-16×16.png
    – favicon-32×32.png
    – Favicon.ico

    In the Enfold settings I can only upload 1 favicon file, so how can I make use of different sizes?

    Thanks :)
    Alwin

    #1395769

    Hey Alwin,
    You will need to use a plugin for this, I’m not sure which would be the best for this as there are many, please test these from the WordPress Plugins

    Best regards,
    Mike

    #1395774

    this is a german website – but i guess you can manage to know how to use it: https://web-stuebchen.de/

    the code generated can be ( in an edited form – depends on the path where you upload those favicons ) loaded via child-theme functions.php:

    function ava_add_icons() {
    ?>
    // here is the place for that snippet offered by that downloaded zip file
    <?php
    }
    add_action('wp_head', 'ava_add_icons');

    you had to manually generate a win8-tile-310×150.png icon ( if you need this )

    #1395776

    howto:

    the zip you can download then show the structure you have choosen:

    #1395780

    Hi,
    Thanks for sharing Guenni007

    Best regards,
    Mike

    #1395794

    PS – same here – but this will generate your android icons too : https://realfavicongenerator.net/
    It is the same implementation as mentioned above – but for the android icons there will be a site.webmanifest ( or some xml files ) file in additon

    <link rel="manifest" href="/wp-content/uploads/icons/site.webmanifest">
    

    Google yourself a little – there are many online favicon generators – one will definitly fit to your needs
    how to insert it into the head area is described above.

    #1395829

    Thank you very much for your help Guenni007 :)

    I think it will work now!

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.