The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Top five not working

5 posters

Go down

Solved Top five not working

Post by nDyc32 September 21st 2022, 1:18 am

Hi , my name is Madalin and i have a big problem with top five mod... here is the script but not working...

https://help.forumgratuit.ro/t52245-top-five-mod?fbclid=IwAR3gZxVzwa0Kqbejj2U8_crJYclIlgYL_Ex5kHRkrwF6q7DhVtStcl_Fnj4

=>Top five not working 307582254_1461172627682433_3923274040889398210_n.png?_nc_cat=101&ccb=1-7&_nc_sid=ae9488&_nc_eui2=AeGS0WUay3kjhNcmsyhy_0JspUhfEKDcr_SlSF8QoNyv9FkRZZdzd80sbSqBWrhXAdGWuJ9GOXdWVFJkOyWuNzFc&_nc_ohc=oD7UxoezX10AX9I7pH6&_nc_ht=scontent.ftgm1-1


Last edited by nDyc32 on September 21st 2022, 11:00 pm; edited 1 time in total
nDyc32
nDyc32
New Member

Posts : 6
Reputation : 1
Language : Romanian

https://metin2rohacks.catsboard.com/

Back to top Go down

Solved Re: Top five not working

Post by SLGray September 21st 2022, 6:12 am

Are you a member of that support forum and asked there?


Top five not working Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51554
Reputation : 3523
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: Top five not working

Post by skouliki September 21st 2022, 8:14 am

hello

since your forum is Romanian and the script is written by the Romanian staff it is better to open there a thread
skouliki
skouliki
Manager
Manager

Female Posts : 15391
Reputation : 1709
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: Top five not working

Post by nDyc32 September 21st 2022, 10:34 am

Hi guys ,
Romanian forum is .... inactive ... i told with Mihai( administrator)on messenger and him say "try here"...
nDyc32
nDyc32
New Member

Posts : 6
Reputation : 1
Language : Romanian

https://metin2rohacks.catsboard.com/

Back to top Go down

Solved Re: Top five not working

Post by SLGray September 21st 2022, 10:36 am

Ok, but you will have to translate everything into English for us since we do not know Romanian.


Top five not working Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51554
Reputation : 3523
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: Top five not working

Post by skouliki September 21st 2022, 11:22 am

what version is your forum?
i will try the code from the Romanian support to see if it working

edit : the tutorial is not working also the creator of the tutorial left a note

Message Written by SSYT Mon Jan 23, 2017 9:47 am
Project currently closed, I will redo the js code for more performance!
skouliki
skouliki
Manager
Manager

Female Posts : 15391
Reputation : 1709
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: Top five not working

Post by Razor12345 September 21st 2022, 12:49 pm

Good afternoon,
I can offer you the option of standard widgets.
Your profile shows the phpbb3 version of the forum.

AP - Modules - Portal & Widgets - Forum widgets management
Display forum widgets : Yes
Width column 1 (left) : 0
Width column 3 (right) 180

Save.

Forum widgets management - Choose the widgets you want and insert them in the right column - Save

Top five not working Ouo18

AP - Display - Templates - General - index_box

Find

Code:
<ul class="linklist">
   <li><a href="{U_TODAY_ACTIVE}">{L_TODAY_ACTIVE}</a>&nbsp;•&nbsp;</li>
   <li><a href="{U_TODAY_POSTERS}">{L_TODAY_POSTERS}</a>&nbsp;•&nbsp;</li>
   <li class="last"><a href="{U_OVERALL_POSTERS}">{L_OVERALL_POSTERS}</a></li>
   <!-- BEGIN switch_delete_cookies -->
   <li class="rightside"><a href="{switch_on_index.switch_delete_cookies.U_DELETE_COOKIES}" rel="nofollow">{switch_on_index.switch_delete_cookies.L_DELETE_COOKIES}</a></li>
   <!-- END switch_delete_cookies -->
</ul>

Replace by this

Code:
<ul class="blockforum">
   <li><a href="{U_TODAY_ACTIVE}">{L_TODAY_ACTIVE}</a>&nbsp;•&nbsp;</li>
   <li><a href="{U_TODAY_POSTERS}">{L_TODAY_POSTERS}</a>&nbsp;•&nbsp;</li>
   <li class="last"><a href="{U_OVERALL_POSTERS}">{L_OVERALL_POSTERS}</a></li>
   <!-- BEGIN switch_delete_cookies -->
   <li class="rightside"><a href="{switch_on_index.switch_delete_cookies.U_DELETE_COOKIES}" rel="nofollow">{switch_on_index.switch_delete_cookies.L_DELETE_COOKIES}</a></li>
   <!-- END switch_delete_cookies -->
</ul>

Save - Publish

AP - Display - Pictures and Colors - Colors & CSS - CSS Stylesheet

Input this code:

Code:
#content-container div#content {
margin-right: 0px !important;
}

div#right {
  width: 920px !important;
  margin: 0 auto;
  margin-top: -660px !important;
  padding: 0;

}

div#right .module {
  width: 200px;
  float: left;
  margin-right: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid blue;
}

div#right > .module .inner {
  height: 260px;
}

div#right .module span.corners-bottom, div#right .module span.corners-top {
  display: none;
}

div#right > div[style*="height"] {
  display: none;
}

.blockforum {
  margin-bottom: 290px !important;
}

ul.blockforum li {
   list-style-type: none;
   width: auto;
   font-size: 1.1em;
   line-height: 2.2em;
   display: inline;
   }

ul.blockforum li.rightside {
   float: right;
   text-align: right;
   }


Save

Result:

Top five not working Ouo113

P.S. I applied block indents. If something has collided with another object, let me know.
P.S.2 You can use another widgets or add more widgets.
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1581
Reputation : 268
Language : Ukr, Rus, Eng
Location : Ukraine

TonnyKamper and nDyc32 like this post

Back to top Go down

Solved Re: Top five not working

Post by nDyc32 September 21st 2022, 2:29 pm

skouliki wrote:what version is your forum?
i will try the code from the Romanian support to see if it working

edit : the tutorial is not working also the creator of the tutorial left a note

Message Written by SSYT Mon Jan 23, 2017 9:47 am
Project currently closed, I will redo the js code for more performance!
Hi skouliki ,
My forum use PHPbb3 , but this code work on phpbb2 ... i have this on my another forum but in phpbb3 doesn't work
nDyc32
nDyc32
New Member

Posts : 6
Reputation : 1
Language : Romanian

https://metin2rohacks.catsboard.com/

Back to top Go down

Solved Re: Top five not working

Post by Razor12345 September 21st 2022, 7:21 pm

I apologize - I found a mistake in my version.
If you paste the code as it is - widgets will be scattered on all pages of the forum


Add the following code to the CSS (AP - Display - Pictures and Colors - Colors & CSS - CSS Stylesheet)
Code:

#content-container #right {
width: 0;
height: 0;
}
#content-container div#content {
margin-right:0;
}

Save.

AP - Display - Templates - General - index_body

At the top of the template input:

Code:
<style type="text/css">
#content-container div#right {
width: 180px;
height: auto;
}
#content-container div#content {
margin-right: 185px;
}
</style>

Save. Publish.

Widgets will now only be visible on the home page
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1581
Reputation : 268
Language : Ukr, Rus, Eng
Location : Ukraine

nDyc32 likes this post

Back to top Go down

Solved Re: Top five not working

Post by nDyc32 September 21st 2022, 9:16 pm

Razor12345 wrote:I apologize - I found a mistake in my version.
If you paste the code as it is - widgets will be scattered on all pages of the forum


Add the following code to the CSS (AP - Display - Pictures and Colors - Colors & CSS - CSS Stylesheet)
Code:

#content-container #right {
width: 0;
height: 0;
}
#content-container div#content {
margin-right:0;
}

Save.

AP - Display - Templates - General - index_body

At the top of the template input:

Code:
<style type="text/css">
#content-container div#right {
width: 180px;
height: auto;
}
#content-container div#content {
margin-right: 185px;
}
</style>

Save. Publish.

Widgets will now only be visible on the home page


this code doesn't work on my forum.... Just look here
Top five not working F-r-titlu
nDyc32
nDyc32
New Member

Posts : 6
Reputation : 1
Language : Romanian

https://metin2rohacks.catsboard.com/

Back to top Go down

Solved Re: Top five not working

Post by Razor12345 September 21st 2022, 9:58 pm

Change this parameter

Code:
margin-top: -660px !important;

Increase this value.
For example, -760px, -860px ...
Choose a setting that works for you.


Top five not working Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1581
Reputation : 268
Language : Ukr, Rus, Eng
Location : Ukraine

Back to top Go down

Solved Re: Top five not working

Post by nDyc32 September 21st 2022, 10:35 pm

Razor12345 wrote:Change this parameter

Code:
margin-top: -660px !important;

Increase this value.
For example, -760px, -860px ...
Choose a setting that works for you.

half work good..
i have another problem with 2 nd widgets and 3rd .. don't show....
https://imgur.com/ug1Ud7q
nDyc32
nDyc32
New Member

Posts : 6
Reputation : 1
Language : Romanian

https://metin2rohacks.catsboard.com/

Back to top Go down

Solved Re: Top five not working

Post by Razor12345 September 21st 2022, 10:45 pm

1) Do you put widgets in the right column? Widgets can be inserted only in the right column of Forum widgets management
2) Are you inserting standard service widgets or those written by someone else?
If standard widgets - tell me the names. If written by someone - send me a link to the code or the code itself.
With the settings I gave you, it should fit 4 widgets
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1581
Reputation : 268
Language : Ukr, Rus, Eng
Location : Ukraine

Back to top Go down

Solved Re: Top five not working

Post by nDyc32 September 21st 2022, 11:00 pm

i solved ! Thank you very much guys !
nDyc32
nDyc32
New Member

Posts : 6
Reputation : 1
Language : Romanian

https://metin2rohacks.catsboard.com/

Back to top Go down

Solved Re: Top five not working

Post by Ape September 22nd 2022, 1:13 am

Problem solved & topic archived.
Please read our forum rules: ESF General Rules


Top five not working Left1212Top five not working Center11Top five not working Right112
Top five not working Ape_b110
Top five not working Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19432
Reputation : 2010
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum