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.

How to add on latest topic/top poster?

+4
skouliki
SarkZKalie
Draxion
Iration
8 posters

Go down

In progress How to add on latest topic/top poster?

Post by Iration June 29th 2020, 12:04 pm

Hello guys,

I would like to ask how to add a latest topic/top poster table? I hope you can help me with this. Thanks!

Ex.
https://i.imgur.com/RB8AqIE.png
Iration
Iration
Forumember

Male Posts : 62
Reputation : 1
Language : Bisaya
Location : Cagayan de Oro City

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by Draxion June 29th 2020, 2:51 pm

Draxion
Draxion
Helper
Helper

Male Posts : 2518
Reputation : 321
Language : English
Location : USA

https://www.talesoftellene.com/

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by SarkZKalie June 29th 2020, 2:56 pm

Hello @Iration

This is latest topic system v5 created by baivong long time ago. It may now unaccessible


latest topics - How to add on latest topic/top poster? Sarkzk10
SarkZKalie
SarkZKalie
Support Moderator
Support Moderator

Male Posts : 1418
Reputation : 220
Language : English

https://rotavn.forumotion.com/

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by Iration June 29th 2020, 4:48 pm

Does this work on awesomebb forum version maam/sir?
Iration
Iration
Forumember

Male Posts : 62
Reputation : 1
Language : Bisaya
Location : Cagayan de Oro City

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by skouliki June 29th 2020, 8:42 pm

edit .



Last edited by skouliki on July 4th 2020, 3:47 pm; edited 1 time in total
skouliki
skouliki
Manager
Manager

Female Posts : 15118
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

tikky likes this post

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by Iration June 30th 2020, 4:09 am

bro kindly help me with this one? have you already try this one using awesomebb forum version? @pedxz
Iration
Iration
Forumember

Male Posts : 62
Reputation : 1
Language : Bisaya
Location : Cagayan de Oro City

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by skouliki June 30th 2020, 8:08 am

hello

it is not necessary to tag pedxz to every post you made.. I am sure he reads all the posts and if he can , he will help 
but we are not here to do the job for you we are here to guide and help you
( i suggest you open a test forum to test all the codes you want to add )
skouliki
skouliki
Manager
Manager

Female Posts : 15118
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by tikky June 30th 2020, 12:22 pm

Hey @Iration,

It won't' look the same but the #awesomebb is more elegant and modern latest topics - How to add on latest topic/top poster? 1f60a see the demo:

latest topics - How to add on latest topic/top poster? Awtopw10

To installing create a new JavaScript page with investment in all pages with the following code:
Code:
/*globals jQuery*/

(function($) {
    'use strict';

    var widgets = [{
        name: 'Latest topics'
    }, {
        name: 'Top posters'
    }];

    $(function() {

        var $top = $('<div>', {
            'class': 'top-widgets'
        }).css({
            'display': 'flex',
            'width': '90%',
            'margin-left': 'auto',
            'margin-right': 'auto',
            'justify-content': 'space-around',
            'flex-flow': 'row wrap',
            'align-items': 'stretch'
        }).insertAfter('#site_widgets');


        $.each(widgets, function(index, box) {

            if (!box.name) return;

            var $widget = $('.box').find('.box-head span:contains(' + box.name + ')');

            if (!$widget.length) return;

            $widget.parent().parent().css('flex', 'auto').appendTo($top);

        });

        $top.find('.box:not(:last)').css('margin-right', '.2rem');

    });
})(jQuery);

You can add more widgets just add the name of the widget here:
Code:
var widgets = [{
        name: 'Latest topics'
    }, {
        name: 'Top posters'
    }];

Important: to work properly the widget needs to be active:

latest topics - How to add on latest topic/top poster? Awwid10
tikky
tikky
Forumember

Posts : 897
Reputation : 157
Language : 🇵🇹

https://www.forumotion.com/create-forum/modernbb

TonnyKamper, mSyx and Iration like this post

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by Iration June 30th 2020, 5:45 pm

skouliki wrote:hello

it is not necessary to tag pedxz to every post you made.. I am sure he reads all the posts and if he can , he will help 
but we are not here to do the job for you we are here to guide and help you
( i suggest you open a test forum to test all the codes you want to add )
With all due respect maam/sir, I tagged him becoz he's the only one who answered all my questions and he's an expert/pro with it comes to awesomebb forum version hehe.. Thanks a lot bro @pedxz, godbless you always
Iration
Iration
Forumember

Male Posts : 62
Reputation : 1
Language : Bisaya
Location : Cagayan de Oro City

tikky likes this post

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by SLGray June 30th 2020, 8:26 pm

You need to understand that most tutorials on the support forum were created before the versions of ModernBB and AwesomeBB were released.   Because of this, many tutorials will not work on these versions without modifications.


latest topics - How to add on latest topic/top poster? 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 : 51482
Reputation : 3519
Language : English
Location : United States

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

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by skouliki June 30th 2020, 8:50 pm

When your request is complete, please mark it as Solved.
skouliki
skouliki
Manager
Manager

Female Posts : 15118
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by Iration July 1st 2020, 3:54 pm

The code works bro but how can I make the table name BOLD? @pedxz
Iration
Iration
Forumember

Male Posts : 62
Reputation : 1
Language : Bisaya
Location : Cagayan de Oro City

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by tikky July 1st 2020, 4:15 pm

Add in your stylesheet (CSS):
Code:
.box .box-head span {
  font-weight: bold!important;
}
tikky
tikky
Forumember

Posts : 897
Reputation : 157
Language : 🇵🇹

https://www.forumotion.com/create-forum/modernbb

Iration likes this post

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by Iration July 2nd 2020, 6:23 pm

is it possible to merge multiple widgets in one widget? like the sample pic I showed you bro? @pedxz
Iration
Iration
Forumember

Male Posts : 62
Reputation : 1
Language : Bisaya
Location : Cagayan de Oro City

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by Iration July 3rd 2020, 2:59 pm

bro is there any way to customize the table? @pedxz
Iration
Iration
Forumember

Male Posts : 62
Reputation : 1
Language : Bisaya
Location : Cagayan de Oro City

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by tikky July 3rd 2020, 3:31 pm

Iration wrote:bro is there any way to customize the table? @pedxz
By CSS the class is
Code:
.top-widgets
is the space where the widgets are contained Lol






Or do you prefer "is more like a table":

latest topics - How to add on latest topic/top poster? Widtop10
tikky
tikky
Forumember

Posts : 897
Reputation : 157
Language : 🇵🇹

https://www.forumotion.com/create-forum/modernbb

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by Iration July 3rd 2020, 3:33 pm

bro do you have the full code? my forum theme is red and white Smile @pedxz
Iration
Iration
Forumember

Male Posts : 62
Reputation : 1
Language : Bisaya
Location : Cagayan de Oro City

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by tikky July 3rd 2020, 3:37 pm

Iration wrote:bro do you have the full code? my forum theme is red and white Smile @pedxz
but what is your idea for customization?
tikky
tikky
Forumember

Posts : 897
Reputation : 157
Language : 🇵🇹

https://www.forumotion.com/create-forum/modernbb

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by Iration July 3rd 2020, 4:06 pm

Like this one bro, that looks all widget has been merged
https://imgur.com/RB8AqIE
Iration
Iration
Forumember

Male Posts : 62
Reputation : 1
Language : Bisaya
Location : Cagayan de Oro City

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by SLGray July 3rd 2020, 9:34 pm

That is more than two widgets merged.


latest topics - How to add on latest topic/top poster? 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 : 51482
Reputation : 3519
Language : English
Location : United States

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

Iration likes this post

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by Iration July 3rd 2020, 9:59 pm

SLGray wrote:That is more than two widgets merged.
exactly sir,,
Iration
Iration
Forumember

Male Posts : 62
Reputation : 1
Language : Bisaya
Location : Cagayan de Oro City

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by skouliki July 4th 2020, 7:43 am

please provide your forum url
skouliki
skouliki
Manager
Manager

Female Posts : 15118
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by Iration July 4th 2020, 3:27 pm

here is my forum url maam/sir


Last edited by Iration on July 5th 2020, 8:44 pm; edited 1 time in total
Iration
Iration
Forumember

Male Posts : 62
Reputation : 1
Language : Bisaya
Location : Cagayan de Oro City

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by Ape July 4th 2020, 4:33 pm

Your forum needs to be open to the public so we can see part of it.


latest topics - How to add on latest topic/top poster? Left1212latest topics - How to add on latest topic/top poster? Center11latest topics - How to add on latest topic/top poster? Right112
latest topics - How to add on latest topic/top poster? Ape_b110
latest topics - How to add on latest topic/top poster? Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19109
Reputation : 1991
Language : fluent in dork / mumbojumbo & English haha

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

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by skouliki July 9th 2020, 2:28 pm

APE wrote:Your forum needs to be open to the public so we can see part of it.

@Iration please post your forum url for appearance problems
skouliki
skouliki
Manager
Manager

Female Posts : 15118
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by Iration July 24th 2020, 6:09 pm

With all due respect sir, the forum is not intended to be open in public, its exclusively for organization. But I can give you a test account if you want. Thank you sir @skouliki


Bro good day, do you know how to merge all widget into one? @pedxz. I wish you can help me with this. Thanks in advance bro
Iration
Iration
Forumember

Male Posts : 62
Reputation : 1
Language : Bisaya
Location : Cagayan de Oro City

Back to top Go down

In progress Help me with creating more forums

Post by ChienTC August 6th 2020, 4:57 pm

https://i.imgur.com/qrFzsTx.png
how to create forum headers as shown
ChienTC
ChienTC
New Member

Posts : 2
Reputation : 1
Language : Viêt nam

https://mphone.forumvi.com

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by SLGray August 6th 2020, 8:12 pm

ChienTC wrote:https://i.imgur.com/qrFzsTx.png
how to create forum headers as shown
Start your own topic.


latest topics - How to add on latest topic/top poster? 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 : 51482
Reputation : 3519
Language : English
Location : United States

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

ChienTC likes this post

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by ChienTC August 7th 2020, 1:22 am

where to start my own topic
ChienTC
ChienTC
New Member

Posts : 2
Reputation : 1
Language : Viêt nam

https://mphone.forumvi.com

Back to top Go down

In progress Re: How to add on latest topic/top poster?

Post by SLGray August 7th 2020, 4:30 am

ChienTC wrote:where to start my own topic
https://help.forumotion.com/f45-forum-design-appearance-help


latest topics - How to add on latest topic/top poster? 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 : 51482
Reputation : 3519
Language : English
Location : United States

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

Back to top Go down

Back to top

- Similar topics

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