sandgrounder Posted June 18, 2023 Share Posted June 18, 2023 Hello to community I want to make to make my website to have an app feeling and great mobile experience without being an app. My main focus is on the mobile version. What is the best solution ? Does a template suffices or I need to have PWA? My site is custom prestashop 1.7.7.5 Will any of this options create any issue with my current website? regards Link to comment Share on other sites More sharing options...
El Patron Posted June 19, 2023 Share Posted June 19, 2023 On 6/18/2023 at 2:51 AM, sandgrounder said: Hello to community I want to make to make my website to have an app feeling and great mobile experience without being an app. My main focus is on the mobile version. What is the best solution ? Does a template suffices or I need to have PWA? My site is custom prestashop 1.7.7.5 Will any of this options create any issue with my current website? regards High quality theme works very well. I always get yelled out when I mention a theme brand but Leo Themes does a nice job providing basically all the tools one needs, the elementor themes are pretty robust, easy to select look you want, change what you want: https://www.leotheme.com/prestashop/themes/elementor-themes.html Link to comment Share on other sites More sharing options...
ZHSoft Posted March 18, 2024 Share Posted March 18, 2024 Just modify the template and it will have no impact on the website. Add the following code between <head> and </head> of your template: <link rel="apple-touch-icon" href="./assets/img/favicons/apple-touch-icon.png" sizes="180x180"> <link rel="icon" href="./assets/img/favicons/favicon-32x32.png" sizes="32x32" type="image/png"> <link rel="icon" href="./assets/img/favicons/favicon-16x16.png" sizes="16x16" type="image/png"> <link rel="manifest" href="./assets/img/favicons/manifest.json"> <link rel="mask-icon" href="./assets/img/favicons/safari-pinned-tab.svg" color="#712cf9"> <link rel="icon" href="./assets/img/favicons/favicon.ico"> Among them, the file content of manifest.json is: { "name": "ZHSoft", "short_name": "ZHSoft", "icons": [ { "src": "android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { "src": "android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } ], "start_url": "/?utm_source=a2hs", "theme_color": "#7952b3", "background_color": "#7952b3", "display": "standalone" } The above is all the code of PWA, the final effect: Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now