active topic on the forum Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

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.
4 posters

    active topic on the forum

    poesia-verses
    poesia-verses
    Forumember


    Male Posts : 565
    Reputation : 22
    Language : and small english

    active topic on the forum Empty active topic on the forum

    Post by poesia-verses June 16th 2024, 1:37 pm

    Code:
    <div style="background-color:#afc6bc;" class="rssfeed box-content">
    </div><script type="text/javascript">
    $.get('/feed/?type=atom').done(function(data) {
        var a = $(data);
        var b = a.find('entry:lt(3)').length;
        for (var z = 0; z < b; z++) {
            var e = a.find('entry:eq(' + z + ') title').text();
            var f = a.find('entry:eq(' + z + ') id').text();
            var g = a.find('entry:eq(' + z + ') name').text();
            var t = a.find('entry:eq(' + z + ') updated').text();
            var textt = a.find('entry:eq(' + z + ') content').text();
            $('.rssfeed').append('<div class="last-feed"><br><a href="' + f + '" class="title-post">' + e + '</a><div class="text-feed" style="line-height: 200%; font-size: 22px; ">' + textt + ' </div><a href="' + f + '?view=newest" ><font color=blue>[читать посл. сообщение]</font></a><br /><br /><div class="time-user"> ' + t + ' <a href="/profile.forum?mode=viewprofile&u=' + g + '">' + g + '</a></div><br></div>');
        }
        $('.text-feed').text(function() {
            return $(this).text().length > 270 ? $(this).text().substr(0, 270) + '...' : $(this).text();
        })
    });
    </script>

    this code shows the first post of the active forum topic. How can I change it so that the code shows the LAST message of the active topic?
    Jucarese
    Jucarese
    Hyperactive


    Male Posts : 2539
    Reputation : 118
    Language : spanish
    Location : SSF Admin

    active topic on the forum Empty Re: active topic on the forum

    Post by Jucarese June 16th 2024, 2:23 pm

    Try from the AP to see if that topic order solution works for you.

    active topic on the forum Temas_10

    TonnyKamper and كونان2000 like this post

    poesia-verses
    poesia-verses
    Forumember


    Male Posts : 565
    Reputation : 22
    Language : and small english

    active topic on the forum Empty Re: active topic on the forum

    Post by poesia-verses June 16th 2024, 3:57 pm

    @jucarese thanks. not work
    @كونان2000 please. help me
    hi all Smile Smile Shocked

    كونان2000 likes this post

    SarkZKalie
    SarkZKalie
    Support Moderator
    Support Moderator


    Male Posts : 1442
    Reputation : 220
    Language : English

    active topic on the forum Empty Re: active topic on the forum

    Post by SarkZKalie June 16th 2024, 9:50 pm

    this code shows the first post of the active forum topic. How can I change it ?

    Halo mister

    This js code will get your forum topics from https://stihi-podval.forumotion.com/feed/ and then return them as a user-friendly list. It means it won't show any message except the first message in these topics

    Demo here you can see Very Happy


    Last edited by SarkZKalie on June 16th 2024, 10:14 pm; edited 1 time in total



    active topic on the forum Sarkzk10

    كونان2000 likes this post

    كونان2000
    كونان2000
    Forumember


    Male Posts : 271
    Reputation : 113
    Language : Arabic

    active topic on the forum Empty Re: active topic on the forum

    Post by كونان2000 June 16th 2024, 10:14 pm

    hi @poesia-verses ,

    Not sure it will work in your forum
    But replace the previous code with the following
    Code:
      <div style="background-color:#afc6bc;" class="rssfeed box-content">
    </div><script type="text/javascript">
    $.get('/feed/?type=atom').done(function(data) {
        var a = $(data);
        var b = a.find('entry:lt(3)').length;
        for (var z = 0; z < b; z++) {
            var e = a.find('entry:eq(' + z + ') title').text();
            var f = a.find('entry:eq(' + z + ') id').text();
            var g = a.find('entry:eq(' + z + ') name').text();
            var t = a.find('entry:eq(' + z + ') updated').text();
            var textt = a.find('entry:eq(' + z + ') content').text();
            $('.rssfeed').append('<div class="last-feed"><br><a href="' + f + '" class="title-post">' + e + '</a><div class="text-feed" style="line-height: 200%; font-size: 22px; ">' + textt + ' </div><a href="?view=newest">читать посл. сообщение</a><br /><br /><div class="time-user"> ' + t + ' <a href="/profile.forum?mode=viewprofile&u=' + g + '">' + g + '</a></div><br></div>');
        }
        $('.text-feed').text(function() {
            return $(this).text().length > 270 ? $(this).text().substr(0, 270) + '...' : $(this).text();
        })
    });
    </script>

    If it doesn't work well
    Tell me

    كونان2000 likes this post

    poesia-verses
    poesia-verses
    Forumember


    Male Posts : 565
    Reputation : 22
    Language : and small english

    active topic on the forum Empty Re: active topic on the forum

    Post by poesia-verses June 16th 2024, 11:58 pm

    @كونان2000 this code shows the first post of the active forum topic
    كونان2000
    كونان2000
    Forumember


    Male Posts : 271
    Reputation : 113
    Language : Arabic

    active topic on the forum Empty Re: active topic on the forum

    Post by كونان2000 June 17th 2024, 6:51 am

    poesia-verses wrote: @كونان2000 this code shows the first post of the active forum topic

    strange. It works in my forum Think

    Can you share the viewtopic_body template on your forum?
    poesia-verses
    poesia-verses
    Forumember


    Male Posts : 565
    Reputation : 22
    Language : and small english

    active topic on the forum Empty Re: active topic on the forum

    Post by poesia-verses June 17th 2024, 7:00 am

    the code you gave is exactly the same as what I gave

    كونان2000
    كونان2000
    Forumember


    Male Posts : 271
    Reputation : 113
    Language : Arabic

    active topic on the forum Empty Re: active topic on the forum

    Post by كونان2000 June 17th 2024, 7:18 am

    I mean, have you made any modifications to the viewtopic_body template?

    If you modify the viewtopic_body template?
    Place the template here

    poesia-verses likes this post

    poesia-verses
    poesia-verses
    Forumember


    Male Posts : 565
    Reputation : 22
    Language : and small english

    active topic on the forum Empty Re: active topic on the forum

    Post by poesia-verses June 17th 2024, 8:29 am

    @كونان2000
    This is the code in the widget, it should show the latest post.



    and here is the template


    Code:
    <style type="text/css">
      #content-container div#right {
      display: none;
      }
    </style>

    <!-- BEGIN switch_plus_menu -->
     
    <script type="text/javascript">
       //<![CDATA[
       var multiquote_img_off = '{JS_MULTIQUOTE_IMG_OFF}', multiquote_img_on = '{JS_MULTIQUOTE_IMG_ON}';
    </script>
    <!-- END switch_plus_menu -->
    <script type="text/javascript">

    var hiddenMsgLabel = { visible:'{JS_HIDE_HIDDEN_MESSAGE}', hidden:'{JS_SHOW_HIDDEN_MESSAGE}' };
    showHiddenMessage = function(id)
    {
        try
        {
            var regId = parseInt(id, 10);
            if( isNaN(regId) ) { regId = 0; }
           
            if( regId > 0)
            {
                $('.post--' + id).toggle(0, function()
             {
                if( $(this).is(":visible") )
                {
                   $('#hidden-title--' + id).html(hiddenMsgLabel.visible);
                }
                else
                {
                   $('#hidden-title--' + id).html(hiddenMsgLabel.hidden);
                }
             });
            }
        }
        catch(e) { }
       
       return false;
    };

    //]]>
    </script>









    <ul id="navstrip" class="clearfix">
      <li class="begin"><a href="{U_INDEX}"><span>{L_INDEX}</span></a></li><br />
      <img src="https://i.servimg.com/u/f10/20/33/56/10/21212112.gif"><br />
        {NAV_CAT_DESC}
    </ul>
     
    {POSTERS_LIST}
    <!-- BEGIN topicpagination -->
    <div class="pagination topic-options">
       {PAGINATION}
    </div>
    <!-- END topicpagination -->

    <div class="posting-options topic-options">
       <ul class="posting-buttons clearfix">
          <!-- BEGIN switch_user_authpost -->
             <li class="post-icon"><a href="{U_POST_NEW_TOPIC}" accesskey="n" rel="nofollow"><img src="{POST_IMG}" class="{POST_IMG_ID}" alt="{L_POST_NEW_TOPIC}" /></a></li>
          <!-- END switch_user_authpost -->
          <!-- BEGIN switch_user_authreply -->
             <li class="post-icon"><a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" class="i_reply" alt="{L_POST_REPLY_TOPIC}" /></a></li>
          <!-- END switch_user_authreply -->
          <!-- BEGIN switch_fb_likebtn -->
          <li class="post-icon">
             <div id="fb-root"></div>
             <script>(function(d, s, id) {
               var js, fjs = d.getElementsByTagName(s)[0];
               if (d.getElementById(id)) return;
               js = d.createElement(s); js.id = id;
               js.src = "https://connect.facebook.net/{LANGUAGE}/all.js#xfbml=1";
               fjs.parentNode.insertBefore(js, fjs);
             }(document, 'script', 'facebook-jssdk'));</script>   
             <div class="fb-like" data-href="{FORUM_URL}{TOPIC_URL}" data-layout="button_count" data-action="like" data-show-faces="false" data-share="false" style="top:5px"></div>
          </li>   
          <!-- END switch_fb_likebtn -->
          
          <!-- BEGIN switch_twitter_btn -->
          <li class="post-icon" style="padding-top:5px">
                <a href="https://twitter.com/share" class="twitter-share-button" data-via="{TWITTER}">Tweet</a>
                <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
            </li>
          <!-- END switch_twitter_btn -->
       </ul>
    </div>

    <div class="clearfix empty-clear"></div>

    <div class="borderwrap">
       <div class="maintitle floated">
          <h1>{TOPIC_TITLE}</h1>
          <div id="topicmenu-options" class="popmenubutton">
             <!-- BEGIN switch_plus_menu -->
             <div id="addthis-toolbar" style="display: inline-block; margin-right:5px;">
                <div class="btn-floating-left" tabindex="100">
                        {L_SHARE}
                </div>
                <div class="addthis-toolbar-btn" style="display:none;">
                        {switch_plus_menu.SOCIAL_BUTTONS}
                </div>
             </div>
                {switch_plus_menu.JS_SOCIAL_BUTTONS}
             <script type="text/javascript">//<![CDATA[

                var url_favourite = '{U_FAVOURITE_JS_PLUS_MENU}';
                var url_newposts = '{U_NEWPOSTS_JS_PLUS_MENU}';
                var url_egosearch = '{U_EGOSEARCH_JS_PLUS_MENU}';
                var url_unanswered = '{U_UNANSWERED_JS_PLUS_MENU}';
                var url_watchsearch = '{U_WATCHSEARCH_JS_PLUS_MENU}';
                insert_plus_menu_new('f{FORUM_ID}&amp;t={TOPIC_ID}','{JS_SESSION_ID}', {JS_AUTH_FAVOURITES}, '{JS_WATCH_TOPIC}');
             //]]>
             </script>
             <!-- END switch_plus_menu -->
          </div>
       </div>
      <div style="background-color: #cbd89e; color: yellow; padding-top: 20px; padding-left: 360px;">
        ............. . . . . . . .....<a href="?view=newest">==> <font size="5" color="#91910e">перейти к последнему посту темы</font></a>
      </div>
       {POLL_DISPLAY}

       <!-- BEGIN postrow -->
       
       <!-- BEGIN hidden -->
       <div class="postdetails {postrow.hidden.ROW_CLASS}" colspan="2" align="center">{postrow.hidden.MESSAGE}</div>
       <!-- END hidden -->
       
       <!-- BEGIN first_post_br -->
    </div>
    <hr id="first-post-br" />
     
    <div class="borderwrap">
       <!-- END first_post_br -->
       
       <!-- BEGIN displayed -->
       <div id="p{postrow.displayed.U_POST_ID}" class="post {postrow.displayed.ONLINE_IMG_NEW} clearfix post--{postrow.displayed.U_POST_ID}"{postrow.displayed.THANK_BGCOLOR} style="{postrow.displayed.DISPLAYABLE_STATE}">
          <div class="post-container"{postrow.displayed.THANK_BGCOLOR}>
             <div class="postbody clearfix">
                <div class="postprofile" id="profile{postrow.displayed.U_POST_ID}">

                   <div class="postprofile-head post-header"{postrow.displayed.THANK_BGCOLOR}>
                      <div class="popmenubutton-new-out popmenubutton">
                         <a href="javascript:void(0);"{postrow.displayed.ONCLICK}>{postrow.displayed.ONLINE_IMG_INV}{postrow.displayed.POSTER_NAME_INV}</a>
                      </div>
                      <!-- BEGIN user_logged_in -->
                      <div id="pm{postrow.displayed.U_POST_ID}" class="popupmenu clearfix" style="display:none;">
                         <div class="avatar">
                            {postrow.displayed.POSTER_AVATAR}
                         </div>
                         <ul>
                            <li class="popupmenu-item">{postrow.displayed.PROFILE_IMG}&nbsp;</li>
                            
                                                             
                            <!-- BEGIN switch_user_email -->
                            <li class="popupmenu-item">{postrow.displayed.EMAIL_IMG}&nbsp;</li>
                            <!-- END switch_user_email -->
                            <!-- BEGIN switch_contact_row -->
                            <li class="popupmenu-item">
                               <!-- BEGIN contact_field -->
                               {postrow.displayed.user_logged_in.switch_contact_row.contact_field.CONTENT}&nbsp;
                               <!-- END contact_field -->&nbsp;
                            </li>
                            <!-- END switch_contact_row -->
                            <!-- BEGIN switch_user_posts -->
                            <li class="popupmenu-item last">{postrow.displayed.USER_POSTS_IMG}&nbsp;</li>
                            <!-- END switch_user_posts -->
                         </ul>
                      </div>
                      <!-- END user_logged_in -->
                   </div>

                   <dl class="postprofile-details postdetails">
                      <dt>
                         {postrow.displayed.POSTER_AVATAR}<br />
                         {postrow.displayed.POSTER_NAME}
                      </dt>
                      <dd>{postrow.displayed.POSTER_RANK_NEW}{postrow.displayed.RANK_IMAGE}</dd>
                                     <dd {postrow.displayed.AWARDS_SHOW} class="dd_award {postrow.displayed.PROFILE_POSITION}">
                                {postrow.displayed.AWARDS}
                      </dd>
                      <dd class="award_more"></dd><br>   
                                              <dd><br /></dd>
                                         
     <div class="award_more"></div>
                                              <br/>
                      <dd>
                         <!-- BEGIN profile_field -->
                         {postrow.displayed.profile_field.LABEL}{postrow.displayed.profile_field.CONTENT}{postrow.displayed.profile_field.SEPARATOR}
                         <!-- END profile_field -->
                         {postrow.displayed.POSTER_RPG}
                      </dd>
       
                                                <div>{postrow.displayed.PM_IMG}</div>
                                             
     
                   </dl>
                </div>

             <div class="postbody-head postdetails post-header"{postrow.displayed.THANK_BGCOLOR}>
                <ul class="post-info">
                   <li>{postrow.displayed.IP_IMG}</li>
                   <li>{L_POST_NUMBER}{postrow.displayed.COUNT_POSTS_NUMBER}</li>
                </ul>
                    <div style="position: relative; top: -30px; width: 1px;" id="{postrow.displayed.U_POST_ID}"></div>
                <h3>{postrow.displayed.ICON} <a href="{postrow.displayed.POST_URL}">{postrow.displayed.POST_SUBJECT}</a></h3>
                <p class="author"><img src="{postrow.displayed.MINI_POST_IMG}" alt="{postrow.displayed.L_MINI_POST_ALT}" title="{postrow.displayed.L_MINI_POST_ALT}" />&nbsp;{L_TOPIC_BY}&nbsp;{postrow.displayed.POSTER_NAME} {postrow.displayed.POST_DATE_NEW}</p>
             </div>

             <div class="post-entry">
                <!-- BEGIN switch_vote_active -->
                <div class="vote gensmall">
                   <!-- BEGIN switch_vote -->
                   <div class="vote-button"><a href="{postrow.displayed.switch_vote_active.switch_vote.U_VOTE_PLUS}">+</a></div>
                   <!-- END switch_vote -->

                   <!-- BEGIN switch_bar -->
                   <div class="vote-bar" title="{postrow.displayed.switch_vote_active.L_VOTE_TITLE}">
                      <!-- BEGIN switch_vote_plus -->
                      <div class="vote-bar-plus" style="height:{postrow.displayed.switch_vote_active.switch_bar.switch_vote_plus.HEIGHT_PLUS}px;"></div>
                      <!-- END switch_vote_plus -->

                      <!-- BEGIN switch_vote_minus -->
                      <div class="vote-bar-minus" style="height:{postrow.displayed.switch_vote_active.switch_bar.switch_vote_minus.HEIGHT_MINUS}px;"></div>
                      <!-- END switch_vote_minus -->
                   </div>
                   <!-- END switch_bar -->

                   <!-- BEGIN switch_no_bar -->
                   <div title="{postrow.displayed.switch_vote_active.L_VOTE_TITLE}" class="vote-no-bar">----</div>
                   <!-- END switch_no_bar -->

                   <!-- BEGIN switch_vote -->
                   <div class="vote-button"><a href="{postrow.displayed.switch_vote_active.switch_vote.U_VOTE_MINUS}">-</a></div>
                   <!-- END switch_vote -->
                </div>
                <!-- END switch_vote_active -->
                            <div class="table-tr-td" style="border-left: solid 1px #6D6D6D;padding-left: 36px;padding-top: 70px;padding-bottom: 35px; margin-left: 10px;">
                                  <div>{postrow.displayed.MESSAGE}</div></div>

                <!-- BEGIN switch_attachments -->
                <dl class="attachbox">
                   <dt>{postrow.displayed.switch_attachments.L_ATTACHMENTS}</dt>
                   <dd>
                      <!-- BEGIN switch_post_attachments -->
                      <dl class="file">
                         <dt>
                            <img src="{postrow.displayed.switch_attachments.switch_post_attachments.U_IMG}" alt="" />

                            <!-- BEGIN switch_dl_att -->
                            <a class="postlink" href="{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.U_ATTACHMENT}">{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT}</a> {postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT_DEL}
                            <!-- END switch_dl_att -->

                            <!-- BEGIN switch_no_dl_att -->
                            {postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT} {postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT_DEL}
                            <!-- END switch_no_dl_att -->
                         </dt>

                         <!-- BEGIN switch_no_comment -->
                         <dd>
                            <em>{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_comment.ATTACHMENT_COMMENT}</em>
                         </dd>
                         <!-- END switch_no_comment -->

                         <!-- BEGIN switch_no_dl_att -->
                         <dd>
                            <em><strong>{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.TEXT_NO_DL}</strong></em>
                         </dd>
                         <!-- END switch_no_dl_att -->

                         <dd>({postrow.displayed.switch_attachments.switch_post_attachments.FILE_SIZE}) {postrow.displayed.switch_attachments.switch_post_attachments.NB_DL}</dd>
                      </dl>
                      <!-- END switch_post_attachments -->
                   </dd>
                </dl>
                <!-- END switch_attachments -->
                <div class="clear"></div>
                              <div style="font-size:12px; margin:0;padding:0;">
                {postrow.displayed.EDITED_MESSAGE}
                              </div>
             </div>


             <!-- BEGIN switch_signature -->
             <div id="sig{postrow.displayed.U_POST_ID}" class="signature_div">{postrow.displayed.SIGNATURE_NEW}</div>
             <!-- END switch_signature -->
             <!-- BEGIN switch_likes_active -->
             <div class="fa_like_div">
                <button class="rep-button {postrow.displayed.switch_likes_active.C_VOTE_LIKE}"  data-href="{postrow.displayed.switch_likes_active.U_VOTE_LIKE}" data-href-rm="{postrow.displayed.switch_likes_active.U_VOTE_RM_LIKE}">
                   <svg width="17px" height="17px" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M320 1344q0-26-19-45t-45-19q-27 0-45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45-18.5t19-45.5zm160-512v640q0 26-19 45t-45 19h-288q-26 0-45-19t-19-45v-640q0-26 19-45t45-19h288q26 0 45 19t19 45zm1184 0q0 86-55 149 15 44 15 76 3 76-43 137 17 56 0 117-15 57-54 94 9 112-49 181-64 76-197 78h-129q-66 0-144-15.5t-121.5-29-120.5-39.5q-123-43-158-44-26-1-45-19.5t-19-44.5v-641q0-25 18-43.5t43-20.5q24-2 76-59t101-121q68-87 101-120 18-18 31-48t17.5-48.5 13.5-60.5q7-39 12.5-61t19.5-52 34-50q19-19 45-19 46 0 82.5 10.5t60 26 40 40.5 24 45 12 50 5 45 .5 39q0 38-9.5 76t-19 60-27.5 56q-3 6-10 18t-11 22-8 24h277q78 0 135 57t57 135z" fill="#fff"></path></svg>
                   <span>{postrow.displayed.switch_likes_active.L_LIKE}</span>{postrow.displayed.switch_likes_active.COUNT_VOTE_LIKE}
                </button>
                <!-- BEGIN switch_dislike_button -->
                <button class="rep-button {postrow.displayed.switch_likes_active.switch_dislike_button.C_VOTE_DISLIKE}" data-href="{postrow.displayed.switch_likes_active.switch_dislike_button.U_VOTE_DISLIKE}" data-href-rm="{postrow.displayed.switch_likes_active.switch_dislike_button.U_VOTE_RM_LIKE}">
                   <svg width="17px" height="17px" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M320 576q0 26-19 45t-45 19q-27 0-45.5-19t-18.5-45q0-27 18.5-45.5t45.5-18.5q26 0 45 18.5t19 45.5zm160 512v-640q0-26-19-45t-45-19h-288q-26 0-45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45-19t19-45zm1129-149q55 61 55 149-1 78-57.5 135t-134.5 57h-277q4 14 8 24t11 22 10 18q18 37 27 57t19 58.5 10 76.5q0 24-.5 39t-5 45-12 50-24 45-40 40.5-60 26-82.5 10.5q-26 0-45-19-20-20-34-50t-19.5-52-12.5-61q-9-42-13.5-60.5t-17.5-48.5-31-48q-33-33-101-120-49-64-101-121t-76-59q-25-2-43-20.5t-18-43.5v-641q0-26 19-44.5t45-19.5q35-1 158-44 77-26 120.5-39.5t121.5-29 144-15.5h129q133 2 197 78 58 69 49 181 39 37 54 94 17 61 0 117 46 61 43 137 0 32-15 76z" fill="#fff"/></svg>
                   <span>{postrow.displayed.switch_likes_active.switch_dislike_button.L_DISLIKE}</span>{postrow.displayed.switch_likes_active.switch_dislike_button.COUNT_VOTE_DISLIKE}
                </button>
                <!-- END switch_dislike_button -->
                <!-- BEGIN switch_like_list -->
                {postrow.displayed.switch_likes_active.switch_like_list.D_LIKE_LIST}
                <!-- END switch_like_list -->
                <!-- BEGIN switch_dislike_list -->
                {postrow.displayed.switch_likes_active.switch_dislike_list.D_DISLIKE_LIST}
                <!-- END switch_dislike_list -->
             </div>
             <!-- END switch_likes_active -->
          </div>

       </div>

          <div class="post-footer clearfix"{postrow.displayed.THANK_BGCOLOR}>
             <ul class="misc-icons">
                <li><a href="#top">{L_BACK_TO_TOP}</a></li>
                <li>{postrow.displayed.REPORT_IMG_NEW}</li>
             </ul>
             <ul class="posting-icons">
                <li>{postrow.displayed.THANK_IMG}</li>
                <li>{postrow.displayed.MULTIQUOTE_IMG}</li>
                <li>{postrow.displayed.QUOTE_IMG}</li>
                <li>{postrow.displayed.EDIT_IMG}</li>
                <li>{postrow.displayed.DELETE_IMG}</li>
             </ul>
                      . . . .. . .<a href="#qpost">==> <font size="3" color="#91910e"> к форме ответа</font></a>
          </div>
       </div> <!-- closing tag post -->
       <!-- END displayed -->
       <!-- END postrow -->
       <div class="topic-footer clearfix">
          <!-- BEGIN minisearch -->
          <div class="search-footer-box">
             <form method="get" id="forum-search" action="{S_SEARCHBOX_ACTION}">
                <fieldset>
                   <input type="text" name="search_keywords" id="search_keywords" size="20" value="{L_SEARCH}" onclick="if (this.value == '{L_SEARCH}') this.value = '';" onblur="if (this.value == '') this.value = '{L_SEARCH}';" />
                   &nbsp;<input class="button" type="submit" value="{L_SEARCH}" />
                   <input type="hidden" value="{SEARCH_WHERE}" name="search_where" />
                   <input type="hidden" value="{SEARCH_TOPIC}" name="search_topic" />
                   <input type="hidden" value="posts" name="show_results" />
                </fieldset>
             </form>
          </div>
          <!-- END minisearch -->
            <!-- BEGIN switch_isconnect -->
          <div class="next-prev">
               &laquo; <a href="#shekTraff">Посмотреть темы раздела</a> &middot; <a href="{U_VIEW_NEWER_TOPIC}">Тема ниже</a> &raquo;
          </div>
            <!-- END switch_isconnect -->
       </div>
    </div>

    <!-- BEGIN viewtopic_bottom -->
    <br />
    <div class="borderwrap">
       <div class="bar clearfix">
          <div class="left rtl-inversion-left">
             <input type="hidden" name="t" value="{TOPIC_ID}" />

             <!-- <input type="hidden" name="sid" value="{S_SID}" /> -->
             <input type="hidden" name="{SECURE_ID_NAME}" value="{SECURE_ID_VALUE}" />

             {S_TOPIC_ADMIN}
          </div>
          <div class="right rtl-inversion-right">
             {L_TABS_PERMISSIONS} <br />{S_AUTH_LIST}
          </div>
       </div>
    </div>
    <!-- END viewtopic_bottom -->

    <!-- BEGIN topicpagination -->
    <div class="pagination topic-options">
       {PAGINATION}
    </div>
    <!-- END topicpagination -->


     
    <div class="posting-options topic-options">
       <ul class="posting-buttons clearfix">
          <!-- BEGIN switch_user_authpost -->
          <li class="post-icon">
             <a href="{U_POST_NEW_TOPIC}" accesskey="n" rel="nofollow"><img src="{POST_IMG}" class="{POST_IMG_ID}" alt="{L_POST_NEW_TOPIC}" /></a>
          </li>
          <!-- END switch_user_authpost -->
          <!-- BEGIN switch_user_authreply -->
          <li class="post-icon">
             <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" class="i_reply" alt="{L_POST_REPLY_TOPIC}" /></a>
          </li>
          <!-- END switch_user_authreply -->
       </ul>
    </div>

    <div class="clearfix empty-clear"></div>

    <!-- BEGIN promot_trafic -->
    <div class="row2">
       <div id="ptrafic_close" class="clearfix" style="display:none">
          <div class="maintitle floated">
             <h3>{PROMOT_TRAFIC_TITLE}</h3>
             <div class="right rtl-inversion-right">
                <a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="{TABS_MORE_IMG}" alt="+" align="" border="0" /></a>
             </div>
          </div>
       </div>
       <div id="ptrafic_open" class="clearfix" style="display:''">
          <div class="maintitle floated">
             <h3>{PROMOT_TRAFIC_TITLE}</h3>
             <div class="right rtl-inversion-right">
                <a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="{TABS_LESS_IMG}" alt="-" align="" border="0" /></a>
             </div>
          </div>
          <div>
             <!-- BEGIN link -->
             &raquo;&nbsp;<a href="{promot_trafic.link.U_HREF}" title="{promot_trafic.link.TITLE}" rel="nofollow">{promot_trafic.link.TITLE}</a><br />
             <!-- END link -->
          </div>
       </div>
    </div>
    <!-- END promot_trafic -->

    <!-- BEGIN switch_forum_rules -->
    <div class="row1" id="forum_rules">
       <div class="maintitle">
          <h3>{L_FORUM_RULES}</h3>
       </div>
       <table>
          <tr>
             <!-- BEGIN switch_forum_rule_image -->
             <td class="logo">
                <img src="{RULE_IMG_URL}" alt=""/>
             </td>
             <!-- END switch_forum_rule_image -->
             <td class="rules post-entry">
                {RULE_MSG}
             </td>
          </tr>
       </table>
    </div>
    <!-- END switch_forum_rules -->

    <!-- BEGIN switch_user_logged_in -->
     
     

     
     
     
    <a name="quickreply"></a>
    {QUICK_REPLY_FORM}
    <!-- END switch_user_logged_in -->
      <br /><br />
      <div id="nisuk"></div>
     
     <script type="text/javascript">
      $(document).ready(function(fdf_EN) {
      var numb_limit = 5;
      var globalTopic = 'Общее объявление';
      var colorGlobalTopic = '#b1b7a3';
      var fixTopic = 'Важно!';
      var colorfixTopic = 'black';
      var announcementTopics = 'Объявление';
      var colorannouncementTopics = '#235b18';
      $.ajax({
          type: "GET",
          url: $('ul#navstrip li:last-child a[href*="f"]').attr('href'),
          dataType: "html",
          success: function(crowleys) {
      $("#nisuk").before('<div id="shekTraff" class="row1"><div class="clearfix"><div align="center" class="maintitle floated"><font size="6">темы из раздела</font><img src="https://i.servimg.com/u/f10/20/33/56/10/aaaa11.gif"></div></div><div id="topiclist" align="center"></div></div>');
            $(crowleys).find('table.ipbtable:not(:last-child) tbody tr td.row1:nth-child(3)').each(function(fdf,shek) {
                $('#topiclist').append('» &nbsp;<a id="'+ fdf +'" href="' + $(this).find('a.topictitle').attr('href') + '" title="'+ $(this).text() +'">'+ $(this).text() +'</a><br><br>');
                $('#topiclist a:contains("'+ globalTopic +'")').css('color',colorGlobalTopic);
                $('#topiclist a:contains("'+ fixTopic +'")').css('color',colorfixTopic);
                $('#topiclist a:contains("'+ announcementTopics +'")').css('color',colorannouncementTopics);
                if(fdf == numb_limit) {return false;}
            });
          }
      });
    });
        </script>
       

     
     
     
     
     
     
     
    <!-- BEGIN switch_image_resize -->
    <script type="text/javascript">
    //<![CDATA[
    $(resize_images({ 'selector' : '.postbody .post-entry', 'max_width' : {switch_image_resize.IMG_RESIZE_WIDTH}, 'max_height' : {switch_image_resize.IMG_RESIZE_HEIGHT} }));
    //]]>
    </script>
    <!-- END switch_image_resize -->
             
             
      <script>
     
      window.onload = function() {
     
        if(pageYOffset < 1000) {
     
      let ele = document.getElementById('navstrip');
      ele.scrollIntoView();
     };
      };
     
      </script>

    كونان2000 likes this post

    كونان2000
    كونان2000
    Forumember


    Male Posts : 271
    Reputation : 113
    Language : Arabic

    active topic on the forum Empty Re: active topic on the forum

    Post by كونان2000 June 17th 2024, 7:06 pm

    hi @poesia-verses
    The code works in my forum

    note.
    The link only works with registered members and does not work with guests.
    SarkZKalie
    SarkZKalie
    Support Moderator
    Support Moderator


    Male Posts : 1442
    Reputation : 220
    Language : English

    active topic on the forum Empty Re: active topic on the forum

    Post by SarkZKalie June 19th 2024, 10:35 am

    It's a RSS Feed. That's why you can't get anything else but the fixed content nor change its source here

    Try this https://help.forumotion.com/feed



    active topic on the forum Sarkzk10
    poesia-verses
    poesia-verses
    Forumember


    Male Posts : 565
    Reputation : 22
    Language : and small english

    active topic on the forum Empty Re: active topic on the forum

    Post by poesia-verses June 21st 2024, 5:56 am

    @كونان2000
    There is a link to the last message only, and the text in the widget is the first message.
    The text needs to be the last message. Please demonstrate the script on your forum.
    ---------------------
    and also: how to remove these letters from the date, especially the letter Z
    active topic on the forum 17



    كونان2000
    كونان2000
    Forumember


    Male Posts : 271
    Reputation : 113
    Language : Arabic

    active topic on the forum Empty Re: active topic on the forum

    Post by كونان2000 June 22nd 2024, 5:32 am

    hi @poesia-verses
    There is a link to the last message only, and the text in the widget is the first message.
    The text needs to be the last message. Please demonstrate the script on your forum.
    I registered in your forum
    When I clicked on link (==> перейти к последнему посту темы), it took me to the last post.

    Before clicking
    active topic on the forum O8888810






    After clicking
    active topic on the forum O8888811
    ------------------------

    I don't see any letters in the date.

    To be honest with you, when I registered in your forum, I felt like I was in a maze Confused .

    I don't know how to browse your forum
    poesia-verses
    poesia-verses
    Forumember


    Male Posts : 565
    Reputation : 22
    Language : and small english

    active topic on the forum Empty Re: active topic on the forum

    Post by poesia-verses June 22nd 2024, 10:39 pm

    @كونان2000
    Hi
    I wrote PM to you on my forum. regards


    ----------------------------------

    you code wish mistake^
    my code part
    Code:
    <a href="' + f + '?view=newest" ><font color=blue>[читать посл. сообщение]

    كونان2000 likes this post