Hi @eversonoliveiraf
The Splash Screen is completely controlled by the browser (Chrome). All the PWA can do is to define the Homescreen-Icon, and this icon will also be shown on the splash screen.
In your case it’s this Icon: https://mundohype.com.br/wp-content/uploads/2018/10/cropped-MUNDOHYPE-icon.png
As you can see there is a lot of whitespace around the logo. Thats why it seems so small.
However with the next update I will introduce a new fileter pwp_manifest_icon where you can change the site icon. By default it just takes the WordPress Favicon:
https://github.com/SayHelloGmbH/progressive-wordpress#manifest
Kind regards,
Nico
Hello Nico, thanks for replying
Should I insert this code in the function.php of my theme?
function myplugin_manifest_icon ($ attachment_is) {
return 10; // should be the Post ID of an attachment.
}
add_filter (‘pwp_manifest_icon’, ‘myplugin_manifest_icon’);
Hi @eversonoliveiraf
Yes, you can add this wherever it makes sence. I would recommend the functions.php of your child theme.
Kind regards,
Nico