View Full Version : Remove the posted by
Hyrel
06-11-2005, 04:38 PM
I want to remove the posted by (the username, date and time) information from the description, how do I do that?
Brian
06-11-2005, 08:27 PM
You can edit your adv_links_linkbit template and remove it from there.
oldengine
06-24-2005, 01:10 PM
Digging through this section of the template code, I find that the user name and date is only added to the link page information if "allow replies" is enabled.
<if condition="$vba_options['links_allowreplies']">
In other words, if you disable replies, the (username, date and time) doesn't show anyway.
My goal is to allow replies, but to remove my own user name from any links posted, which is most of them. Still working on that.
oldengine
06-24-2005, 01:53 PM
To prevent links showing by "admin" (user 1) change the following:
In the adv_links_linkbit template find:
<if condition="$link['userid']">
$vbphrase[by_username_on_date]
<else />
$vbphrase[by_guest_on_date]
</if>
Replace with:
<if condition="$link['userid'] == 1">
<else /><if condition="$link['userid'] > 1">
$vbphrase[by_username_on_date]
<else />
$vbphrase[by_guest_on_date]
</if></if>
I'm only a hacker - your mileage may vary. ;)
CSS59
07-13-2005, 11:08 PM
To prevent links showing by "admin" (user 1) change the following:
In the adv_links_linkbit template find:
<if condition="$link['userid']">
$vbphrase[by_username_on_date]
<else />
$vbphrase[by_guest_on_date]
</if>
Replace with:
<if condition="$link['userid'] == 1">
<else /><if condition="$link['userid'] > 1">
$vbphrase[by_username_on_date]
<else />
$vbphrase[by_guest_on_date]
</if></if>
I'm only a hacker - your mileage may vary. ;)
What if I don't want it to show up no matter what group the users are in?
vBulletin® v3.7.4, Copyright ©2000-2009, Jelsoft Enterprises Ltd.