XF 2.1 Calling a specific "page" template

JoyFreak

Well-known member
Is there a way to call a specific page/node template through extra.less?

ATM I am using "page_view" template to target all of the pages but I want to edit something on a specific page that isn't set universally for all pages.

Thanks!
 
.you can use .template-{template_name} class
Example for hide page action buttons on main page:
Less:
.template-forum_list {
    .p-title-pageAction {
        display: none;
    }
}
 
Top Bottom