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

Recent

Welcome to TinyPortal. Please login or sign up.

Recent posts

#1
Support / Re: Recent Topics
Last post by davejo - August 25, 2026, 01:07:21 PM
Thanks for the reply @rjen
#2
Support / Re: Frontpage Topics
Last post by @rjen - August 24, 2026, 08:02:57 PM
No
#3
Support / Re: Recent Topics
Last post by @rjen - August 24, 2026, 05:19:51 PM
No, that option is not available. You can only set the number of recent topics to show, but there is no date range option
#4
Support / Recent Topics
Last post by davejo - August 24, 2026, 04:26:30 PM
Hi All,

Is there a setting/code somewhere that sets the dates for the recent topics? By that I mean can we set it somewhere to pull topics from included boards from lets say the 'last 7 days or more'?
#5
Chit chat / Re: Hog roast sausage`s tonigh...
Last post by Kernal - August 19, 2026, 05:27:34 PM
Well i just eat what`s infront of me and don`t care about the rest of it LMAO  :D have a great night & take good care.
#6
Block Codes / Re: Display Banners TP
Last post by Kernal - August 19, 2026, 05:23:40 PM
Enjoy this banner system — it's simple, easy to use, and works perfectly in TP as intended!

Instructions

It's really simple! Just take a look at the code and replace the hyperlinks with the image URLs you want to display on your forum.

That's all there is to it!

If you have any questions or need any help setting it up, just ask here.
#7
Block Codes / New`s Block On Your Site Code
Last post by Kernal - August 19, 2026, 05:14:33 PM
<center>
<div class="trf-news-wrap">

    <div class="trf-news-header">
        FORUM NEWS
    </div>

    <div class="trf-news-fader">

        <div class="trf-news-item">
            Forum upgraded and optimised for SMF 2.1.7.
        </div>

        <div class="trf-news-item">
            Blurr Blurr Blurr On & On Enjoy add your info here to be displayed.
        </div>

        <div class="trf-news-item">
            Enter your info here to be displayed on the block.
        </div>

        <div class="trf-news-item">
            New members are always welcome to join the discussion.
        </div>

    </div>

</div>

<style>
.trf-news-wrap{
    width:100%;
    margin:0;
    border:1px solid #8ca3a3;
    background:#f7f7f7;
    overflow:hidden;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

/* Kernal theme bar */
.trf-news-header{
    padding:8px 12px;
    font-size:18px;
    font-weight:bold;
    color:#fff;
    text-shadow:1px 1px 1px rgba(0,0,0,.4);

    background:
    linear-gradient(
        to bottom,
        #4f8d8d 0%,
        #3b7474 50%,
        #2c5f5f 100%
    );

    border-bottom:1px solid #d8d8d8;
}

.trf-news-fader{
    position:relative;
    height:48px;
    background:#ffffff;
    overflow:hidden;
}

.trf-news-item{
    position:absolute;
    width:100%;
    left:0;
    top:0;

    padding:14px 10px;
    text-align:center;

    color:#333;
    opacity:0;

    animation:trfFadeNews 16s infinite;
}

.trf-news-item:nth-child(1){
    animation-delay:0s;
}

.trf-news-item:nth-child(2){
    animation-delay:4s;
}

.trf-news-item:nth-child(3){
    animation-delay:8s;
}

.trf-news-item:nth-child(4){
    animation-delay:12s;
}

@keyframes trfFadeNews{

    0%{
        opacity:0;
    }

    5%{
        opacity:1;
    }

    20%{
        opacity:1;
    }

    25%{
        opacity:0;
    }

    100%{
        opacity:0;
    }
}

@media (max-width:600px){

    .trf-news-fader{
        height:60px;
    }

    .trf-news-item{
        font-size:14px;
        line-height:1.4;
        padding:10px;
    }

}
<center/>
#8
Block Codes / Display Banners TP
Last post by Kernal - August 19, 2026, 05:07:13 PM
<!-- ==========================================================
     Kernal Components Library (KERNAL CODED)  V 1.6

Updated the Banner system on here to display more banners
as needed Code Kernal 2026!
 ========================================================== -->

<style>
.kcl-wrapper{
    --bg:#dfe5ea;
    --card:#ffffff;
    --card2:#f4f4f4;
    --border:#c6d2da;
    --hover:#8aa0ac;
    --shadow:rgba(0,0,0,.18);
    font-family:Arial,sans-serif;
}

.kcl-wrapper *,
.kcl-wrapper *:before,
.kcl-wrapper *:after{
    box-sizing:border-box;
}

.carousel{
    position:relative;
    overflow:hidden;
    background:var(--bg);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.slide{
    display:none;
    padding:12px 10px;
}

.slide.active{
    display:block;
    animation:fade .8s ease;
}

.grid{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.card{
    display:flex;
    justify-content:center;
    align-items:center;
    width:220px;
    height:60px;
    padding:5px;
    background:linear-gradient(#fff,var(--card2));
    border:1px solid var(--border);
    border-radius:5px;
    overflow:hidden;
    text-decoration:none;
    transition:.25s ease;
}

.card:hover{
    border-color:var(--hover);
    box-shadow:0 8px 18px var(--shadow);
    transform:translateY(-3px) scale(1.02);
}

.card img{
    width:100%;
    height:100%;
    object-fit:contain;
}

@keyframes fade{
    from{
        opacity:.2;
    }
    to{
        opacity:1;
    }
}

@media(max-width:768px){

    .grid{
        flex-direction:column;
    }

    .card{
        width:90%;
        max-width:320px;
    }

}
</style>


<div class="kcl-wrapper">

<div class="carousel" id="kcl-carousel">


<div class="slide active">
<div class="grid">

<a class="card" href="https://www.tinyportal.net" target="_blank">
<img src="https://rapidforum.co.uk/forum/Advertise/TinyPortalv8.jpg">
</a>

<a class="card" href="https://www.drbobsgunbits.com" target="_blank">
<img src="https://rapidforum.co.uk/forum/Advertise/DrBob.jpg">
</a>

<a class="card" href="https://www.customstock.co.uk" target="_blank">
<img src="https://rapidforum.co.uk/forum/Advertise/customstocks.jpg">
</a>

<a class="card" href="https://www.airgunbuyer.com" target="_blank">
<img src="https://rapidforum.co.uk/forum/Advertise/BlackpoolAirguns_234x60px.jpg">
</a>

</div>
</div>


<div class="slide">
<div class="grid">

<a class="card" href="https://bamfordguns.co.uk/" target="_blank">
<img src="https://rapidforum.co.uk/forum/Advertise/Bamfords.jpg">
</a>

<a class="card" href="https://www.cheshiregunroom.com/" target="_blank">
<img src="https://rapidforum.co.uk/forum/Advertise/CheshireGunRoom.jpg">
</a>

<a class="card" href="https://www.jackpyke.co.uk/" target="_blank">
<img src="https://rapidforum.co.uk/forum/Advertise/JackPyke.jpg">
</a>

<a class="card" href="https://www.yorkshiresportingguns.co.uk/" target="_blank">
<img src="https://rapidforum.co.uk/forum/Advertise/YorkshireSportingGuns5.jpg">
</a>

</div>
</div>


</div>
</div>


<script>
(function(){

const carousel=document.getElementById("kcl-carousel");
const slides=carousel.querySelectorAll(".slide");

let current=0;
let timer;


function nextSlide(){

    slides[current].classList.remove("active");

    current++;

    if(current >= slides.length){
        current=0;
    }

    slides[current].classList.add("active");

}


function startCarousel(){

    timer=setInterval(nextSlide,8000);

}


function stopCarousel(){

    clearInterval(timer);

}


carousel.addEventListener("mouseenter",stopCarousel);
carousel.addEventListener("mouseleave",startCarousel);


startCarousel();


})();
</script>


Enjoy any problems with adjusting this code to suit your site just ask below.
#9
Support / Frontpage Topics
Last post by Itchdog - August 11, 2026, 02:48:12 AM
Is there a limit to how many topics can be promoted to the frontpage? I have a news forum and I promote some topics to the frontpage. Is there a limit or should I be removing them after they've fallen to the next page?

*edit. I know you can set how many shows on the frontpage. I'm wondering about overall (like 1000, etc.)

This website is proudly hosted on Crocweb Cloud Website Hosting.