TP-Docs
HTML5 Icon HTML5 Icon HTML5 Icon
TP on Social Media

Recent

Welcome to TinyPortal. Please login or sign up.

April 16, 2024, 05:07:20 AM

Login with username, password and session length

Recent posts

#1
Modules / Re: Top posts (most liked) mod...
Last post by @rjen - April 15, 2024, 08:41:25 PM
Created two more, and updated the codes to allow removal of the title line in the block...

#2
Modules / Re: Top posts (most liked) mod...
Last post by IgorS - April 15, 2024, 01:56:08 PM
WOW! Thanks a lot!

Will try it soon and get back to you with some feedback!
#3
Modules / Re: Top posts (most liked) mod...
Last post by @rjen - April 13, 2024, 08:39:43 PM
Just created the blockcode for top like users as well
Will be included in the next version..

You can move these two files in to the folder \tp-files\tp-blockcodes in your forum...
You can select them as blockcodes into PHP blocks...

You cannot view this attachment.
#4
Support / Re: Customize menus
Last post by @rjen - April 12, 2024, 02:05:44 PM
If I undertstand correctly you want to create a menu in a block, like this..?

You cannot view this attachment.

Check out the instruction on our help site
https://www.tinyportal.net/docs/index.php?page=Add-menu


#5
Support / Customize menus
Last post by ramiroflores - April 12, 2024, 09:52:09 AM
Hi everybody,

i am new i am looking for solution, how to create a custom menu in smf mini portal with block navigations - links to different forum sections to display like front page style. Block menu section for various forums.

Who can help me?
#6
Modules / Re: Top posts (most liked) mod...
Last post by @rjen - April 11, 2024, 08:49:51 PM
Okay, challenge accepted...

Drop below code into a PHP block and you should be good to go..
There is one parameter you can change to influence the history: $days = '365' change 365 to the period in days you want...

global $scripturl, $smcFunc, $txt, $days, $modSettings;

// Configuration
// Specify number of days for likes.
    $days = '365';
// End Config

// get the likes
    loadLanguage('Stats');

    $max_liked = 1;
    $request = $smcFunc['db_query']('', '
        SELECT m.id_msg, m.subject, l.likes, m.total_likes, m.id_board, m.id_topic, t.approved
        FROM (
            SELECT n.id_msg, n.subject, n.likes AS total_likes, n.id_board, n.id_topic
            FROM {db_prefix}messages as n
            ) AS m
            INNER JOIN
                (SELECT content_id, content_type, count(*) AS likes FROM {db_prefix}user_likes where content_type = "msg" AND like_time > UNIX_TIMESTAMP(DATE_SUB(NOW(), INTERVAL {int:days} DAY)) group by content_id, content_type order by likes desc) AS l ON (l.content_id = m.id_msg)
            INNER JOIN {db_prefix}topics AS t ON (m.id_topic = t.id_topic)
            INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board' . (!empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0 ? '
                AND b.id_board != {int:recycle_board}' : '') . ')
        WHERE {query_see_board}' . ($modSettings['postmod_active'] ? '
            AND t.approved = {int:is_approved}' : '') . '
        ORDER BY l.likes DESC
        LIMIT 10',
        array(
            'recycle_board' => $modSettings['recycle_board'],
            'is_approved' => 1,
            'days' => $days,
        )
    );
           
    $messages = array();
   
    while ($row = $smcFunc['db_fetch_assoc']($request))
    {
        censorText($row_liked_message['subject']);
        $messages[] = array(
            'id' => $row['id_topic'],
            'subject' => $row['subject'],
            'num' => $row['likes'],
            'href' => $scripturl . '?msg=' . $row['id_msg'],
            'link' => '<a href="' . $scripturl . '?msg=' . $row['id_msg'] . '">' . $row['subject'] . '</a>'
        );

        if ($max_liked < $row['likes'])
            $max_liked = $row['likes'];
    }
    $smcFunc['db_free_result']($request);

    foreach ($messages as $i => $request)
        $messages[$i]['percent'] = round(($request['num'] * 100) / $max_liked);
   
// output the likes
    echo '
        <div class="content">
            <div class="title_bar">
                <h4 class="titlebg">
                    <span class="main_icons liked_messages"></span> ',  $txt['top_liked_messages'], ' -
                    ',$days,' ',$txt['days_word'],'
                </h4>
            </div>
            <dl class="stats">';

    foreach ($messages as $item)
    {
        echo '
                <dt>
                    ', $item['link'], '
                </dt>
                <dd class="statsbar generic_bar righttext">';

        if (!empty($item['percent']))
            echo '
                    <div class="bar" style="width: ', $item['percent'], '%;"></div>';
        else
            echo '
                    <div class="bar empty"></div>';

        echo '
                    <span>', $item['num'], '</span>
                </dd>';
    }

    echo '
            </dl>
        </div><!-- .content -->';


Result...
You cannot view this attachment.
#7
Modules / Re: Top posts (most liked) mod...
Last post by @rjen - April 08, 2024, 11:48:54 AM
It does not yet exist, but should be possible. Thinking about it: we normally use SMF SSI functions, but I don't think there is an existing function offered that uses likes atm...

So someone would have to create the query...
#8
Modules / Top posts (most liked) module
Last post by IgorS - April 08, 2024, 07:39:03 AM
Hello.

Is there any way to add the module to SMF 2.1.4 with the most liked posts in X days?
Something like "Recent Posts" from TP but sorted with "likes".

I have used the modification Good Post/Bad Post in 2.0.19 and there was a module added below the forum, with the most liked posts in the last 7 days.

#9
German / Deutsche Sprachdateien (Downlo...
Last post by @rjen - April 02, 2024, 10:08:32 PM
Alle Sprachdateien im Downloadbereich *Klick*

- TinyPortal 3.0.0 Sprachdateien.



Installationshinweise:

Einfach die Dateien nach

_FORUMSORDNER_/Themes/default/languages/

kopieren.

Nicht den Paket-Manager benutzen.



Wenn ihr Fehler gefunden oder Vorschläge habt, dann postet sie in diesem Thread!




#10
Support / Re: Combining TP database tabl...
Last post by davo88 - April 01, 2024, 08:15:03 AM
Thanks @rjen.