Hi, We created a custom component with the New Topic button and added this component to many pages across the community including a page where to see the topics with a specific label. You will need to add the component to the ForumsFilteredByLabelPage page. Here is what we have in the component: <div class="customNewTopicButton">
<a class="NewTopic-link" href="/t5/forums/postpage/choose-node/true/interaction-style/forum/override-styles/true">Start a topic</a>
</div>
<script>
$(document).ready(function(e){
if(window.location.href.indexOf("ct-p") > -1) {
//This is a category page
$('.NewTopic-link').attr("href","/t5/forums/postpage/category-id/${coreNode.id}/choose-node/true");
}
else
if(window.location.href.indexOf("m-p") > -1) {
//This is a topic page
//Get the categoryid from a breadcrumb
var arr = $('.crumb-category.lia-breadcrumb-category').attr('href').split('/');
var categoryID = arr[arr.length-1];
$('.NewTopic-link').attr("href","/t5/forums/postpage/category-id/"+ categoryID +"/choose-node/true");
}
});
</script>
... View more