XF 1.4 Remove node title/description display for specific node

reddy ink

Active member
Licensed customer
I would like to remove displaying of node/forum title and description for specific node(7).

upload_2015-1-24_9-31-58.webp
Many thanks.
 
You can hide it using CSS as well if you are not worried about the HTML still loading.

Code:
.node7 .titleBar
{
        display: none;
}
 
You can hide it using CSS as well if you are not worried about the HTML still loading.

Code:
.node7 .titleBar
{
        display: none;
}

Thanks a lot for the reply.
Works great but it also removes thread title once you click on the thread. I need just the forum title to be not displayed.
upload_2015-1-24_14-32-49.webp
 
This area?
upload_2015-1-24_14-38-48.webp

If so
Code:
.node7 #pageDescription {
display: none;
}

If not then you will need to edit the template as Brogan said above, should be in thread_view template.
 
Thank you for the reply again. I would like to remove NODE title from forum display but when I click on one of the thread, it takes to next page (thread display page).
Here I would need thread title displayed on top.

The solution you provided before took out both forum title display and thread title display from next page.

Need title display on
https://xenforo.com/community/threa...-display-for-specific-node.91518/#post-886670

NO title on
https://xenforo.com/community/forums/styling-and-customization-questions.47/


upload_2015-1-24_14-58-52.webp


This area?
View attachment 96093

If so
Code:
.node7 #pageDescription {
display: none;
}

If not then you will need to edit the template as Brogan said above, should be in thread_view template.
 

Attachments

  • upload_2015-1-24_14-58-16.webp
    upload_2015-1-24_14-58-16.webp
    17.2 KB · Views: 1
Last edited:
Back
Top Bottom