A asusforo Member Mar 19, 2015 #1 Id like to post some threads, without showing the author name of topic starter, like its a news thread. Look at the picture below for an example. Is this possible?
Id like to post some threads, without showing the author name of topic starter, like its a news thread. Look at the picture below for an example. Is this possible?
P Paul B XenForo moderator Staff member Mar 19, 2015 #2 You could edit the template and use a conditional statement with the thread ID but you would have to manually update it for each thread. It would require an add-on to do it properly. Upvote 0 Downvote
You could edit the template and use a conditional statement with the thread ID but you would have to manually update it for each thread. It would require an add-on to do it properly.
A asusforo Member May 4, 2015 #3 Lets say I create a new member. Then i hide the author info of this member ID. And then i post only news topics with this member. How can i do this with if conditional php? Upvote 0 Downvote
Lets say I create a new member. Then i hide the author info of this member ID. And then i post only news topics with this member. How can i do this with if conditional php?
rafass Well-known member May 4, 2015 #4 how about this addon? https://xenforo.com/community/resources/bd-anonymous-posting.970/ Last edited: May 4, 2015 Upvote 0 Downvote
A asusforo Member May 4, 2015 #5 Thank you for your reply rafass, i havent seen this plugin before, i will try it. But i prefer a conditional statement, i need it just for 1 member. I tried it with CSS, Something like (page container file) Code: <xen:if is="{$visitor.user_id} == 1151"> <style type="text/css"> .messageUserInfo {display: none;} .authorEnd {display: none;} </style> </xen:if> But its not working. This is hiding all author infos for the specific user id. I want to hide the info ABOUT this specific user. How can i hide 2 divs about 1 user? Last edited: May 4, 2015 Upvote 0 Downvote
Thank you for your reply rafass, i havent seen this plugin before, i will try it. But i prefer a conditional statement, i need it just for 1 member. I tried it with CSS, Something like (page container file) Code: <xen:if is="{$visitor.user_id} == 1151"> <style type="text/css"> .messageUserInfo {display: none;} .authorEnd {display: none;} </style> </xen:if> But its not working. This is hiding all author infos for the specific user id. I want to hide the info ABOUT this specific user. How can i hide 2 divs about 1 user?