NickH Member May 16, 2016 #1 Hi, How do I remove the username by the date at the bottom of posts? IE : NickH,A moment ago Click to expand...
Hi, How do I remove the username by the date at the bottom of posts? IE : NickH,A moment ago Click to expand...
wang Well-known member May 16, 2016 #2 NickH said: Hi, How do I remove the username by the date at the bottom of posts? IE : Click to expand... You can do that by removing, or better yet, commenting out this code from the post template: HTML: <span class="authorEnd"><xen:username user="$post" class="author" />,</span> Upvote 0 Downvote
NickH said: Hi, How do I remove the username by the date at the bottom of posts? IE : Click to expand... You can do that by removing, or better yet, commenting out this code from the post template: HTML: <span class="authorEnd"><xen:username user="$post" class="author" />,</span>
Steve F Well-known member May 16, 2016 #5 You can also use CSS to hide it instead of editing a template. Add to EXTRA.css Code: .message span.authorEnd { display: none; } Just another option is all. Upvote 0 Downvote
You can also use CSS to hide it instead of editing a template. Add to EXTRA.css Code: .message span.authorEnd { display: none; } Just another option is all.