[2.0.6] Per-User Avatar/Sig Disable

The cleanup is complete. This forum is now read only.
Post Reply

Rating:

Excellent!
15
44%
Very Good
9
26%
Good
3
9%
Fair
3
9%
Poor
4
12%
 
Total votes: 34

midkiff
Registered User
Posts: 59
Joined: Fri May 16, 2003 9:02 pm
Contact:

Post by midkiff »

After installing this mod no ones avatars are showing up and they are all set to Y to display avatars, does anyone know how to correct this?
User avatar
Rat
Registered User
Posts: 102
Joined: Wed Oct 23, 2002 4:46 am
Location: Houston, TX
Contact:

Post by Rat »

tbartold wrote: Will this mod be made EasyMOD compliant? I ask because I added it to my test board (luckily) using EasyMOD and it seemed to have worked, but then not posts show in the topic view. The culprit (along with the next one)?

Code: Select all

#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/viewtopic_body.tpl
# 
#-----[ FIND ]------------------------------------------ 
#
{postrow.POSTER_AVATAR}
# 
#-----[ REPLACE WITH ]------------------------------------------ 
#
<!-- BEGIN switch_showavatars -->{postrow.POSTER_AVATAR}<!-- END switch_showavatars -->
The whole line got clobbered rather than just the find text.


when you install by easyMOD everything will go through smooth, but you will end up with an error because of the line above..

it MUST be insert as

Code: Select all

<!-- BEGIN switch_showavatars -->
{postrow.POSTER_AVATAR}
<!-- END switch_showavatars -->
when you using easyMOD it just replace the whole line instead of that part only! make sure you check.

ps. this will work with 2.0.10! i just install it again on my board the other day.
Rat
tbartold
Registered User
Posts: 138
Joined: Sat Mar 15, 2003 3:51 am
Contact:

Post by tbartold »

Rat wrote:
tbartold wrote:Will this mod be made EasyMOD compliant? I ask because I added it to my test board (luckily) using EasyMOD and it seemed to have worked, but then not posts show in the topic view. The culprit (along with the next one)?

Code: Select all

#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/viewtopic_body.tpl
# 
#-----[ FIND ]------------------------------------------ 
#
{postrow.POSTER_AVATAR}
# 
#-----[ REPLACE WITH ]------------------------------------------ 
#
<!-- BEGIN switch_showavatars -->{postrow.POSTER_AVATAR}<!-- END switch_showavatars -->
The whole line got clobbered rather than just the find text.


when you install by easyMOD everything will go through smooth, but you will end up with an error because of the line above..

it MUST be insert as

Code: Select all

<!-- BEGIN switch_showavatars -->
{postrow.POSTER_AVATAR}
<!-- END switch_showavatars -->
when you using easyMOD it just replace the whole line instead of that part only! make sure you check.

ps. this will work with 2.0.10! i just install it again on my board the other day.


I think I see my mistake, but it is not so musch the lines as the "command"

Code: Select all

#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/viewtopic_body.tpl
# 
#-----[ FIND ]------------------------------------------ 
#
{postrow.POSTER_AVATAR}
#
#-----[ IN-LINE FIND ]------------------------------------------ 
#
{postrow.POSTER_AVATAR}
# 
#-----[ IN-LINE REPLACE WITH ]------------------------------------------ 
#
<!-- BEGIN switch_showavatars -->{postrow.POSTER_AVATAR}<!-- END switch_showavatars -->
The "IN-LINE" is what makes EasyMOD change only the part of the line and not the whole line.

This is what I ended up using. Sorry for not posting that after I figured out what went wrong.
User avatar
Rat
Registered User
Posts: 102
Joined: Wed Oct 23, 2002 4:46 am
Location: Houston, TX
Contact:

Post by Rat »

i test this mod again out on my phpbb 2.0.10 yesterday and find a bug.

the installation of this mod cause the avatar gallery not to function correctly... after you install this your avatar gallery won't work correctly.

when you change from page 1, to page 2 to page 3 etc.. it will say something (please fill out .. form) and some time you select the avatar alone in the gallery it will do this also. plus it will change your timezone and date display.

:) my board is fresh and i'm sure i install this mod correctly because it work correctly except the bug in the avatar gallery.
Rat
tbartold
Registered User
Posts: 138
Joined: Sat Mar 15, 2003 3:51 am
Contact:

Post by tbartold »

Rat wrote: i test this mod again out on my phpbb 2.0.10 yesterday and find a bug.


I had problems with this mod upgrading, so I switched to using a different mod: (Dis)allow signatures and avatars. This other mod also allows users to select to see signatures without images.
shinji
Registered User
Posts: 7
Joined: Sat Jul 05, 2003 3:51 pm

Post by shinji »

I installed this and for some reason the profile page stopped displaying properly. I am going to give this another shot but I don't know what happened. The only other mod was the EasyMod installer and since that one doesn't touch the files during its own install I don't know what happened.
micron
Registered User
Posts: 10
Joined: Sun Aug 29, 2004 12:27 pm

Post by micron »

I,ve noticed that Yes and No radio positions are not like other (ie buttons displayed closer). Here is the fix:
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/admin/user_edit_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<input type="radio" name="allowsmilies" value="0" {ALWAYS_ALLOW_SMILIES_NO} />
<span class="gen">{L_NO}</span></td>
</tr>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<tr>
<td class="row1"><span class="gen">{L_SHOW_AVATARS}:</span></td>
<td class="row2">
<input type="radio" name="showavatars" value="1" {SHOW_AVATARS_YES} />
<span class="gen">{L_YES}</span>&nbsp;&nbsp;
<input type="radio" name="showavatars" value="0" {SHOW_AVATARS_NO} />
<span class="gen">{L_NO}</span></td>
</tr>
<tr>
<td class="row1"><span class="gen">{L_SHOW_SIGNATURES}:</span></td>
<td class="row2">
<input type="radio" name="showsignatures" value="1" {SHOW_SIGNATURES_YES} />
<span class="gen">{L_YES}</span>&nbsp;&nbsp;
<input type="radio" name="showsignatures" value="0" {SHOW_SIGNATURES_NO} />
<span class="gen">{L_NO}</span></td>
</tr>
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/profile_add_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<input type="radio" name="allowsmilies" value="0" {ALWAYS_ALLOW_SMILIES_NO} />
<span class="gen">{L_NO}</span></td>
</tr>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<tr>
<td class="row1"><span class="gen">{L_SHOW_AVATARS}:</span></td>
<td class="row2">
<input type="radio" name="showavatars" value="1" {SHOW_AVATARS_YES} />
<span class="gen">{L_YES}</span>&nbsp;&nbsp;
<input type="radio" name="showavatars" value="0" {SHOW_AVATARS_NO} />
<span class="gen">{L_NO}</span></td>
</tr>
<tr>
<td class="row1"><span class="gen">{L_SHOW_SIGNATURES}:</span></td>
<td class="row2">
<input type="radio" name="showsignatures" value="1" {SHOW_SIGNATURES_YES} />
<span class="gen">{L_YES}</span>&nbsp;&nbsp;
<input type="radio" name="showsignatures" value="0" {SHOW_SIGNATURES_NO} />
<span class="gen">{L_NO}</span></td>
</tr>
cifroes
Registered User
Posts: 108
Joined: Wed Mar 27, 2002 4:09 pm

Please remove this mod

Post by cifroes »

If any moderator see this, please remove or put a warning about this mod.

This mod BREAKS avatar gallery and should not be classified as a 1.0.0 "stable" mod. All phpbb.com mods need to be aproved to be sure they work, well, this time some bugs weren't seen while aproving. I'm not criticizing, I'm just giving my opinion: This mod should be removed or be brought to beta status until major bugs are fixed.


Until then you should see these posts with fixes:

http://www.phpbb.com/phpBB/viewtopic.ph ... 696#965696
http://www.phpbb.com/phpBB/viewtopic.ph ... 59#1005359

(I haven't tested the 2nd one, but I think it makes sense)


Just my 0.02€
singrrr
Registered User
Posts: 1
Joined: Sat Sep 25, 2004 8:01 pm

Post by singrrr »

lordfett213 wrote: Any one have a fix for the mod posting avatars outside the messages on the top left and making the message area really small and the text unreadable?

Running version 2.0.6


I am also having this problem.
mtec89
Registered User
Posts: 4
Joined: Sat Sep 11, 2004 12:39 am
Location: Ohio
Contact:

bug!

Post by mtec89 »

(problem resolved!!)

every thing works on, untill i have to do this step:

Code: Select all

#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/viewtopic_body.tpl
#
#-----[ FIND ]------------------------------------------
#
{postrow.POSTER_AVATAR}
#
#-----[ REPLACE WITH ]------------------------------------------
#

<!-- BEGIN switch_showavatars -->
<br />{postrow.POSTER_AVATAR}
<!-- END switch_showavatars -->

#
#-----[ FIND ]------------------------------------------
#
{postrow.SIGNATURE}
#
#-----[ REPLACE WITH ]------------------------------------------
#

<!-- BEGIN switch_showsignatures -->
{postrow.SIGNATURE}
<!-- END switch_showsignatures -->

once i do that, i get a horrible glitch; see it here: http://www.mtec89net.com/ss.jpg
vagrantpawn
Registered User
Posts: 23
Joined: Fri Sep 24, 2004 8:23 am

Post by vagrantpawn »

Does anybody have an update for this mod? I tried installing it first by EasyMOD, then manually, and it screwed up both times in the view topic pages, by showing the avs on the top left of the page, and the columns were unaligned and white.
tbartold
Registered User
Posts: 138
Joined: Sat Mar 15, 2003 3:51 am
Contact:

Post by tbartold »

I gave up on this one. I use an alternative one Disallow/Allow Signatures and Avatars. I couldn't find another topic on this board discussing it though. I actually used EasyMOD to install it but had to modify it slightly.
Mc ToM
Registered User
Posts: 78
Joined: Sat Aug 07, 2004 1:59 am

Post by Mc ToM »

i have problem

Code: Select all

#-----[ FIND ]------------------------------------------ 
#
{postrow.SIGNATURE}
# 
#-----[ REPLACE WITH ]------------------------------------------ 
#

<!-- BEGIN switch_showsignatures --> 
{postrow.SIGNATURE} 
<!-- END switch_showsignatures -->

# 
this is don't show anything in the viewtopic that I add this...
why?
thank you
stickman10
Registered User
Posts: 15
Joined: Fri Dec 17, 2004 5:27 am

Post by stickman10 »

This mod works great. I have a version 2.0.11. Thanks

To those you can't get it working, make sure you followed the instructions carefully. Make new lines for this (and one for the postrow.SIGNATURE):

Code: Select all

<!-- BEGIN switch_showavatars --> 
{postrow.POSTER_AVATAR} 
<!-- END switch_showavatars -->
It took me a while to get it working. At first it made the topics show no information and was messed up.

Thanks, stickman10
snailofsatan
Registered User
Posts: 10
Joined: Sun Dec 19, 2004 1:00 pm
Contact:

Post by snailofsatan »

does this work with 2.0.11 ?
Post Reply

Return to “[2.0.x] MOD Database Cleanup”