T TBolley Active member Mar 7, 2023 #1 How i can hide this box ? only for unregistered users ? regards
Solution P P Paul B Mar 13, 2023 Nicolas FR said: You will need to modify the forum_list template using a conditional statement. Click to expand... Not so! Less: [data-logged-in="false"][data-template="forum_list"] { .p-body-header { display: none; } }
Nicolas FR said: You will need to modify the forum_list template using a conditional statement. Click to expand... Not so! Less: [data-logged-in="false"][data-template="forum_list"] { .p-body-header { display: none; } }
lucien_lies Active member Mar 13, 2023 #2 On extra.less CSS: .p-body-header { display: none; } Upvote 0 Downvote
O Old Nick Well-known member Mar 13, 2023 #3 @lucien_lies this code will remove the body header from all pages and no more page titles will be displayed, forum titles, discussion titles, resource titles, etc.. Better to target only the forum_list template: Less: [data-template="forum_list"] { .p-body-header { display: none; } } TBolley said: only for unregistered users ? Click to expand... You will need to modify the forum_list template using a conditional statement. Upvote 0 Downvote
@lucien_lies this code will remove the body header from all pages and no more page titles will be displayed, forum titles, discussion titles, resource titles, etc.. Better to target only the forum_list template: Less: [data-template="forum_list"] { .p-body-header { display: none; } } TBolley said: only for unregistered users ? Click to expand... You will need to modify the forum_list template using a conditional statement.
P Paul B XenForo moderator Staff member Mar 13, 2023 #4 Nicolas FR said: You will need to modify the forum_list template using a conditional statement. Click to expand... Not so! Less: [data-logged-in="false"][data-template="forum_list"] { .p-body-header { display: none; } } Upvote 1 Downvote Solution
Nicolas FR said: You will need to modify the forum_list template using a conditional statement. Click to expand... Not so! Less: [data-logged-in="false"][data-template="forum_list"] { .p-body-header { display: none; } }
O Old Nick Well-known member Mar 13, 2023 #5 Brogan said: [data-logged-in="false"] Click to expand... I always forget this one, I will tattoo it on my arm... Upvote 0 Downvote
Brogan said: [data-logged-in="false"] Click to expand... I always forget this one, I will tattoo it on my arm...
P Paul B XenForo moderator Staff member Mar 13, 2023 #6 As long as you balance it by tattooing [data-logged-in="true"] on the other arm ... Upvote 0 Downvote