App customization : Favicon

Under Live App design settings: include custom favicon in addition to logo and custom colors.

Built-in option to set your own favicon / apple touch icon to pin to homescreen.

Thanks! Works great for standard web page.  Is there a way to get this to work for mobile favoriting or adding to the homescreens on iPhone or Android?  With this code it still shows the Knack asterisk.

in order to avoid multiple links in heand : 

 

$(document).on('knack-scene-render.any', function (page) {
$( "[type='image/x-icon']" ).remove();
var favicon = document.createElement('link');
    favicon.type = 'image/x-icon';
    favicon.rel = 'shortcut icon';
    favicon.href = 'your url';
    document.getElementsByTagName('head')[0].appendChild(favicon);
});

 

Nice.

I'm using knack a lot on mobile devices.  Any way to get my favicon to show up when I save the fav to the home screen?  Knack's logo is there?

Thanks a lot ! works fine for me.

Try this to change your app's document title and to add a favicon.

$(document).on('knack-view-render.any', function (event, view, data) {
document.title='document title here';
var link = document.createElement('link');
	link.type = 'image/x-icon';
    link.rel = 'shortcut icon';
    link.href = 'url to favicon here (favicon.ico) ';
    document.getElementsByTagName('head')[0].appendChild(link);
});

 

YES

 

this would be a nice addition..