Widget only on some sections

Technical Support
  • I'd like add a widget only to forum home page but it look i can add a widget globally or to groups only, how can i do ? album

  • There should be a way to add the widget to categories.tpl, which I believe is selected with a tab at the top. It does depend on the theme, though.

  • @PitaJ i've made a persona child theme mantaining the same widget :

    		{
    			name: "Categories Sidebar",
    			template: "categories.tpl",
    			location: "sidebar"
    		},
    		{
    			name: "Category Sidebar",
    			template: "category.tpl",
    			location: "sidebar"
    		},
    		{
    			name: "Topic Sidebar",
    			template: "topic.tpl",
    			location: "sidebar"
    		},
    		{
    			name: "Categories Header",
    			template: "categories.tpl",
    			location: "header"
    		},
    		{
    			name: "Category Header",
    			template: "category.tpl",
    			location: "header"
    		},
    		{
    			name: "Topic Header",
    			template: "topic.tpl",
    			location: "header"
    		},
    		{
    			name: "Categories Footer",
    			template: "categories.tpl",
    			location: "footer"
    		},
    		{
    			name: "Category Footer",
    			template: "category.tpl",
    			location: "footer"
    		},
    		{
    			name: "Topic Footer",
    			template: "topic.tpl",
    			location: "footer"
    		}
    

    but i can't see other's than linked screenshot


Suggested Topics