Jump to content

PWA vs Template


Recommended Posts

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

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

  • 8 months later...

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:

image.thumb.png.c2b498d68e6bf7d43d094028bf08482c.png

 

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...