News:

Wondering if this will always be free?  See why free is better.

Main Menu

MCLegendII.1

Started by Bulakbol, January 28, 2008, 07:44:55 PM

Previous topic - Next topic

I AM Legend

Hi all,
I posted in support 1.1 and they directed me to here,
My forum version is 1.1.7
At the bottom of my forum in the Users Online, below that is the ranks, Admin, Global and so on, each rank has like this [Global Moderator] and a space, my question is how do i increase the space between them evenly?

my pic attachment is here:
http://www.simplemachines.org/community/index.php?action=dlattach;topic=274024.0;attach=75629;image

if needed, the mods installed on my forum are:
Mod Name     Version     
1.    Welcome Topic Mod    1.1    [ Uninstall ]
2.    Affiliates    1.1    [ Uninstall ]
3.    Admin Notepad    1.0    [ Uninstall ]
4.    MCLegendII.2    3.0    [ Uninstall ]
5.    SMF Staff Page    1.6    [ Uninstall ]
6.    Member Notepad    1.0    [ Uninstall ]
7.    Global Headers Footers    1.4.1    [ Uninstall ]
8.    Custom Copyright    1.1.5    [ Uninstall ]
9.    Member Color Link    3.0.5    [ Uninstall ]
10.    Disable Right click    2.0    [ Uninstall ]
11.    ColorizePost    2.0    [ Uninstall ]
12.    Images On Board    1.1    [ Uninstall ]
13.    AvatarOnBoard    2.1    [ Uninstall ]
14.    Sticky First Post (extends sticky topic)    1.3.2    [ Uninstall ]
15.    YouTube BBCode    2.3    [ Uninstall ]
16.    Hide Signatures for Guest    1.0    [ Uninstall ]
17.    Last Active On MemberList    1.01    [ Uninstall ]
18.    New Topic Button    1.0    [ Uninstall ]
19.    SimplePortal    2.0.2    [ Uninstall ]
20.    Lots_o_Smileys    1.0    [ Uninstall ]
21.    Add IP2Location to Track IP    1.1    [ Uninstall ]
22.    SMF Ranks    1.1    [ Uninstall ]
23.    SMF Archive    1.3    [ Uninstall ]
24.    Favorite drink    0.1    [ Uninstall ]
25.    Registration redirection    0.1    [ Uninstall ]
26.    Spoiler Tag    0.6    [ Uninstall ]
27.    JPG Thumbnails    1.0    [ Uninstall ]
28.    No More Ugly Avatar Scrollbars    1.0    [ Uninstall ]
29.    LogModAccountEdits    1.9    [ Uninstall ]
30.    Profil Moderator Managment    1.0.0    [ Uninstall ]
31.    E-Arcade    2.5.4    [ Uninstall ]
32.    SMF 1.0.15 / 1.1.7 Update    1.0

Thanks as always


Kermit

@I AM Legend


you can try this


in BoardIndex.template.php

Code (find this) Select
if (!empty($context['membergroups']))
echo '
<tr>
<td class="windowbg2" width="100%">
<span class="smalltext">[' . implode(']&nbsp;&nbsp;[', $context['membergroups']) . ']</span>



and to have more spaces between the membergroups,you should add that &nbsp;

also as an example




if (!empty($context['membergroups']))
echo '
<tr>
<td class="windowbg2" width="100%">
<span class="smalltext">[' . implode(']&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[', $context['membergroups']) . ']</span>

My Mods
Please don't PM/mail me for support,unless i invite you
Formerly known as Duncan85
Quote
"Two things are infinite: the universe and human stupidity; and I'm not sure about the the universe."

A. Einstein

I AM Legend

thats awesome, ty very much

Bulakbol

Thanks for the help Duncan85  :)
Please do not PM me for support · My Mods and Theme · SMF Coding Guidelines · Modifications Approval Guidelines

Kermit

My Mods
Please don't PM/mail me for support,unless i invite you
Formerly known as Duncan85
Quote
"Two things are infinite: the universe and human stupidity; and I'm not sure about the the universe."

A. Einstein

Triponic


Hi,

I installed the mod with no errors but it won't show up in the online status section at the bottom of my theme.I tried editing the settings on the 'Features and Options' page but nothing...also tried to edit the theme manually but couldnt find the codes. Im using SMF 1.1.7, tiny portal and the Anecdota theme. I've attached the respective file. If anyone could help me it would be much appreciated :)


Bulakbol

Please do not PM me for support · My Mods and Theme · SMF Coding Guidelines · Modifications Approval Guidelines

Gonzalo

Che lo baje y lo subi como mod! lo instale pero no lo puedo ver en mi theme, ni cambiando de idioma, pero igual no tendria que aver problema ya que el mod trae el idioma que yo busco...

Si alguien me diria que modificaciones tengo que hacerle a mi theme se lo recontra agradeseria!

Este es mi theme...
http://www.dzinerstudio.com/index.php?action=tpmod;dl=item51

Saludos! GonZa.

Bulakbol

@Gonzalo
Sorry amigo, no habla español. Please post in english.

In BoardIndex.template.php of your Outline theme, find
<td rowspan="2" class="windowbg" width="20" valign="middle" align="center">
replace with
<td rowspan="3" class="windowbg" width="20" valign="middle" align="center">
Find
', $context['show_stats'] && !$settings['show_sp1_info'] ? '<a href="' . $scripturl . '?action=stats">' . $txt['smf223'] . '</a>' : '', '
</div>
</td>
</tr>
<tr>
<td class="windowbg2" width="100%">
<span class="middletext">
', $txt['most_online_today'], ': <b>', $modSettings['mostOnlineToday'], '</b>.


replace with
', $context['show_stats'] && !$settings['show_sp1_info'] ? '<a href="' . $scripturl . '?action=stats">' . $txt['smf223'] . '</a>' : '', '
</div>
</td>
</tr>';
if (!empty($context['membergroups']))
echo '
<tr>
<td class="windowbg2" width="100%">
<span class="smalltext">[' . implode(']&nbsp;&nbsp;[', $context['membergroups']) . ']</span>
</td>
</tr>';
echo '
<tr>
<td class="windowbg2" width="100%">
<span class="middletext">
', $txt['most_online_today'], ': <b>', $modSettings['mostOnlineToday'], '</b>.
Please do not PM me for support · My Mods and Theme · SMF Coding Guidelines · Modifications Approval Guidelines

TulE

Yap I am.
I like this theme.

Bulakbol

@Tule
I think I told you what to edit but if you haven't done so, here's your edited BoardIndex.template.php.
Please do not PM me for support · My Mods and Theme · SMF Coding Guidelines · Modifications Approval Guidelines

haito

Installing this package will perform the following actions:
   Type    Action    Description
1.    Execute Code    MCLegendDB114.php    
2.    Execute Modification    ./Sources/Load.php    Test successful
3.    Execute Modification    ./Sources/BoardIndex.php    Test successful
4.    Execute Modification    ./Sources/MessageIndex.php    Test successful
5.    Execute Modification    ./Sources/ManageBoards.php    Test successful
6.    Execute Modification    ./Sources/Recent.php    Test failed
7.    Execute Modification    ./Sources/Stats.php    Test successful
8.    Execute Modification    ./Sources/Subs-Boards.php    Test successful
9.    Execute Modification    ./Themes/default/ManageBoards.template.php    Test successful
10.    Execute Modification    ./Themes/default/BoardIndex.template.php    Test successful
11.    Execute Modification    ./Themes/default/MessageIndex.template.php    Test successful
12.    Execute Modification    ./Themes/default/index.template.php    Test successful
13.    Execute Modification    ./Themes/classic/BoardIndex.template.php    Test successful
14.    Execute Modification    ./Themes/classic/MessageIndex.template.php    Test successful
15.    Execute Modification    ./Themes/classic/index.template.php    Test successful
16.    Execute Modification    ./Themes/babylon/BoardIndex.template.php    Test successful
17.    Execute Modification    ./Themes/babylon/MessageIndex.template.php    Test successful
18.    Execute Modification    ./Themes/babylon/index.template.php    Test successful
19.    Execute Modification    ./Themes/default/languages/Modifications.english.php    Test successful
20.    Execute Modification    ./Themes/default/languages/Modifications.german.php    Skipping file
21.    Execute Modification    ./Themes/default/languages/Modifications.italian.php    Skipping file
22.    Execute Modification    ./Themes/default/languages/Modifications.french.php    Skipping file
23.    Execute Modification    ./Themes/default/languages/Modifications.dutch.php    Skipping file
24.    Execute Modification    ./Themes/default/languages/Modifications.romanian.php    Skipping file

what happened with my recent.php?
www.japanesia.co.id | Portal Berita & Komunitas Untuk Kamu yang Suka Jepang

Bulakbol

@Haito
There seems to something wrong with the package you have. Please redownload the mod and reinstall. Let me know how things goes.
Please do not PM me for support · My Mods and Theme · SMF Coding Guidelines · Modifications Approval Guidelines

haito

still........ :'(

1.     Execute Code     MCLegendDB114.php     
2.    Execute Modification    ./Sources/Load.php    Test successful
3.    Execute Modification    ./Sources/BoardIndex.php    Test successful
4.    Execute Modification    ./Sources/MessageIndex.php    Test successful
5.    Execute Modification    ./Sources/ManageBoards.php    Test successful
6.    Execute Modification    ./Sources/Recent.php    Test failed
7.    Execute Modification    ./Sources/Stats.php    Test successful
8.    Execute Modification    ./Sources/Subs-Boards.php    Test successful
9.    Execute Modification    ./Themes/default/ManageBoards.template.php    Test successful
10.    Execute Modification    ./Themes/default/BoardIndex.template.php    Test successful
11.    Execute Modification    ./Themes/default/MessageIndex.template.php    Test successful
12.    Execute Modification    ./Themes/default/index.template.php    Test successful
13.    Execute Modification    ./Themes/classic/BoardIndex.template.php    Test successful
14.    Execute Modification    ./Themes/classic/MessageIndex.template.php    Test successful
15.    Execute Modification    ./Themes/classic/index.template.php    Test successful
16.    Execute Modification    ./Themes/babylon/BoardIndex.template.php    Test successful
17.    Execute Modification    ./Themes/babylon/MessageIndex.template.php    Test successful
18.    Execute Modification    ./Themes/babylon/index.template.php    Test successful
19.    Execute Modification    ./Themes/default/languages/Modifications.english.php    Test successful
20.    Execute Modification    ./Themes/default/languages/Modifications.german.php    Skipping file
21.    Execute Modification    ./Themes/default/languages/Modifications.italian.php    Skipping file
22.    Execute Modification    ./Themes/default/languages/Modifications.french.php    Skipping file
23.    Execute Modification    ./Themes/default/languages/Modifications.dutch.php    Skipping file
24.    Execute Modification    ./Themes/default/languages/Modifications.romanian.php    Skipping file
www.japanesia.co.id | Portal Berita & Komunitas Untuk Kamu yang Suka Jepang

Bulakbol

@haito
I downloaded the package and checked it again. I am sure the mod does not touch Recent.php file. Where did you get your package?
Please do not PM me for support · My Mods and Theme · SMF Coding Guidelines · Modifications Approval Guidelines

haito

www.japanesia.co.id | Portal Berita & Komunitas Untuk Kamu yang Suka Jepang

Bulakbol

Please click this link then scroll the page down. You'll find out that there's no Recent.php in the package. I am not sure about your copy. Can you attach the package you are using?

http://custom.simplemachines.org/mods/index.php?action=parse;mod=1077;attach=72903;smf_version=2.0_Beta_4

or this
http://custom.simplemachines.org/mods/index.php?action=parse;mod=1077;attach=72903;smf_version=1.1.7
Please do not PM me for support · My Mods and Theme · SMF Coding Guidelines · Modifications Approval Guidelines

haito

www.japanesia.co.id | Portal Berita & Komunitas Untuk Kamu yang Suka Jepang

DownUnderCS

#438
I'm having a problem with MCLegendII, but I can't find the official thread for it.

Basically, the mod is not responding to what I do. I've tried numerous times to set the order of the legend, but the order won't change.

I'm using SMF version 2.0 Beta 4.

Link: hxxp:downundercs.tk [nonactive]

Bulakbol

@haito
The package you attached does not have Recent.php in it. Please check it again.

@DownUnderCS
Your theme is supported. Not sure what happened though. You can attach your babylon/BoardIndex.template.php and I'll check it for you.
Please do not PM me for support · My Mods and Theme · SMF Coding Guidelines · Modifications Approval Guidelines

Advertisement: