Frequently Asked Questions | Oct 10, 2024 - 06:30am |
|
|
Frequently Asked Questions Appearance
How can I remove the "Guest User" tag?
Rate This FAQ
(Not yet rated)
|
Created On: 24 Feb 1998 7:01 pm Last Edited: 9 Feb 2005 1:00 am |
Question |
|
|
Effective with Web Crossing version 2.0.2, any post by a guest uses "Guest User" for the second line. Some sysops don't like the change and wish to revert to the earlier behavior. |
Answer |
This requires a change to the messageListItem macro.
In messageListItem, change the line: |
Example |
%% if authorLine2 %%
<br><b>%% authorLine2 %%</b>
%% endif %%
to
%% if authorLine2 && authorLine2 != "Guest User" %%
<br><b>%% authorLine2 %%</b>
%% endif %% |
|
|
|
|