Quote:
Originally Posted by calorie
@theArchitect: To show/hide all signatures and/or avatars... - User CP > Edit Options > Thread Display Options > and uncheck Show Signatures & Show Avatars
- Alternatively, and untested, but you could try the following instead. Find the following in step one:
Code:
$nested_vbcollapse_user_sig = "sig_userid_".$post['userid']."_";
$nested_vbcollapse_user_avt = "avt_userid_".$post['userid']."_";
And replace with the following, and then repeat step four.
Code:
$nested_vbcollapse_user_sig = "sig_userid_";
$nested_vbcollapse_user_avt = "avt_userid_";
|
Cool, I will give it a go.
Basically I am not interested in removing avatars etc. but I wanted to use your hack for an alternate purpose. The user profile can get very large, and on my old board my users had the option of minimising the profile in the postbit.
This original hack doesn't work in 3.5.0 but yours was similar so I was intending to alter its use and achieve the same result.