Can you show me a URL? The page template definitely works.
Hey,
Ah, you’re trying to apply a page template to the shop page. Unfortunately, due to how WooCommerce handles this page (it’s not actually a page, it redirects to a post type archive) you cannot do that.
The only way is via customisation or by using the Storefront WooCommerce Customiser extension.
Thanks
I need a full-width homepage too
I create a site => dashboard => sites,
choose “template => homepage” on the right side
safe and public
dashborad => options=> reading => choose this site as frontpage
style.css in your Child Theme
.page-template-template-homepage-php.left-sidebar .content-area {
width: 100%;
float: left;
margin-left: 0;
margin-right: 0;
margin-top:2em;
}
width:100% does the trick
and now my content area is full-width on frontpage
Thank you jameskoster and Monika! I have solved my problem!