Home Forums WoodMart support forum How to duplicate page maintenance template.

How to duplicate page maintenance template.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #251957

    silbang
    Participant

    I’m making a PWA offline page for my site, how can I duplicate the maintenance page template but making it offline for my PWA page?

    I just need fullscreen without a header and footer.

    What are the files I need to customize? I’m using a child theme so if there is an update it will not be deleted.

    Please help.

    #252075

    Hello,

    If you want to just hide the header and footer of a page then you can use the following Custom CSS to hide it.

    The below CSS will only hide the header and footer for the page whose id is “11”. You can replace the page id with your page id.

    .page-id-11 .whb-header {
    	display: none;
    }
    
    .page-id-11 .footer-container {
    	display: none;
    }

    Regards.
    Xtemos Studios.

Viewing 2 posts - 1 through 2 (of 2 total)