I am trying to build for web and the favicon is not working. I tried both .png and .ico images but after the build I still see the default appgyver icon.
Also, is there a way to edit the page titles as they appear in the browser’s tab bar?
Page titles in the browser’s tab bar is something we’re seeking to fix, but the fix isn’t coming quite yet. However, when you’ve built your final build, you can search and replace these in the HTML to whatever you prefer. As for the favicon, that one should work (as png) are you still experiencing this?
Download the Zip, extract all files, and then open the HTML file in Visual Studio Code, or Atom. In the header, you can change the title manually.
Another way to change Favicon is to convert png to ico, name it Favicon, and replace the favicon.ico file you see in the zip with your Favicon.ico file.
< title >AppGyver< /title > to < title >YourAppName< /title >
In these files:
All → /yourappfolder/ index.html
All → /yourappfolder/page.PageX/ index.html
All → /yourappfolder/m-page.PageX/ index.html /yourappfolder/404/ index.html
Line:
(“title”,null,“AppGyver”) to (“title”,null,“YourAppName”)
All of these things done, and its not working. It initially names the page correctly then as the page load progresses it changes back to AppGyver … I´ve done a full search in all files on my web build and the offending code isn´t there.
I suspect we are now loading something from the Appgyver site that is causing this issue. The below code seems to be related, but I don´t know enough js to work out what its doing.
I really don´t like that my standalone web build has links back to Appgyver web resources either.
Thanks. Are you able to explain what the code I have highlighted does? Its in the standalone webapp build, so I had hoped that it would not need to call on any external resources.