any plans to merge this is in https://github.com/solidusio/solidus/pull/3888 ? or is there another way to use one layout for a set of views and another for the rest of the views (like one layout for the home/taxon/product pages and another layout for checkout and all that?
Vlad Danciu
07/25/2021, 10:58 AM
In the mean time what I do is to have the main layout contain something like this
<%= render template: route_template %>
where
route_template
will return the template I need based on the request path. Any issues with this approach?