• Concept Explanation for Developer: “What’s Active Now?” Widget (Sngine)

    Purpose

    Add a lightweight content curation feature to Sngine without replacing the chronological feed.
    The widget will display the 5 most active/popular posts at the moment, encouraging engagement, visibility, and interaction.

    This is not a heavy algorithm; it’s an algorithm-light signaling feature to promote activity in a platform without any feed algorithm.

    Location

    Top of the homepage / main feed

    Always visible above the chronological timeline


    Display

    Horizontal slider or fixed cards (max. 5 items)

    User-controlled navigation (no autoplay)

    Click on an item → direct link to the post


    Each item displays:

    Post title or first line (max X characters)

    Number of comments

    Optional subtle icon

    Optional timestamp (e.g., “active today”)


    Defining “Popular”

    Not like-driven, but interaction-driven.

    Example scoring system:

    score = (number of comments × 3)
    + (number of likes × 1)
    + recency_bonus

    Where:

    Comments are weighted higher than likes

    Only posts with activity in the last 24–48 hours are included

    Optionally, unique participants count more than total reactions


    This prevents spam and rewards genuine engagement.


    Data Sources (Sngine)

    posts

    posts_likes

    posts_comments

    users (optional for filtering)

    timestamps (created_at / updated_at)


    Querying can be done via:

    Custom SQL JOINs

    Or PHP logic layered on top of the existing Sngine feed


    Technical Approach (Recommended)

    Backend

    Custom function/module (avoid core overrides)

    Periodic query (e.g., every 5–10 minutes)

    Cache results (Redis / file cache / DB cache)


    Frontend

    HTML/CSS component above the feed

    Lightweight JS slider (e.g., Swiper.js or custom)

    Mobile-first, swipe-friendly cards


    Administration & Control

    Optional but recommended:

    Admin can pin 1 item manually

    Admin can temporarily disable the widget

    Fallback: hide the widget if there are too few active posts

    What This Concept Intentionally Does NOT Do

    No manipulative engagement algorithms

    No user profiling

    No feed reordering

    No shadowbanning or filtering


    It is a guide for attention, not a control mechanism.


    Why This Matters (Functionally)

    Gives active posters visibility

    Rewards genuine interaction without a heavy algorithm

    Helps new users find conversation entry points

    Reduces manual work for community managers

    Fits Sngine’s algorithm-free philosophy while preventing inactivity


    Summary for Developer

    > Build a lightweight, transparent popularity widget above the feed showing posts where conversation is actually happening.

    Keep the chronological timeline intact, but provide guidance and recognition to stimulate activity and engagement in the absence of a feed algorithm.


    #concepts #sngine
    Concept Explanation for Developer: “What’s Active Now?” Widget (Sngine) Purpose Add a lightweight content curation feature to Sngine without replacing the chronological feed. The widget will display the 5 most active/popular posts at the moment, encouraging engagement, visibility, and interaction. This is not a heavy algorithm; it’s an algorithm-light signaling feature to promote activity in a platform without any feed algorithm. Location Top of the homepage / main feed Always visible above the chronological timeline Display Horizontal slider or fixed cards (max. 5 items) User-controlled navigation (no autoplay) Click on an item → direct link to the post Each item displays: Post title or first line (max X characters) Number of comments Optional subtle icon Optional timestamp (e.g., “active today”) Defining “Popular” Not like-driven, but interaction-driven. Example scoring system: score = (number of comments × 3) + (number of likes × 1) + recency_bonus Where: Comments are weighted higher than likes Only posts with activity in the last 24–48 hours are included Optionally, unique participants count more than total reactions This prevents spam and rewards genuine engagement. Data Sources (Sngine) posts posts_likes posts_comments users (optional for filtering) timestamps (created_at / updated_at) Querying can be done via: Custom SQL JOINs Or PHP logic layered on top of the existing Sngine feed Technical Approach (Recommended) Backend Custom function/module (avoid core overrides) Periodic query (e.g., every 5–10 minutes) Cache results (Redis / file cache / DB cache) Frontend HTML/CSS component above the feed Lightweight JS slider (e.g., Swiper.js or custom) Mobile-first, swipe-friendly cards Administration & Control Optional but recommended: Admin can pin 1 item manually Admin can temporarily disable the widget Fallback: hide the widget if there are too few active posts What This Concept Intentionally Does NOT Do ❌ No manipulative engagement algorithms ❌ No user profiling ❌ No feed reordering ❌ No shadowbanning or filtering It is a guide for attention, not a control mechanism. Why This Matters (Functionally) Gives active posters visibility Rewards genuine interaction without a heavy algorithm Helps new users find conversation entry points Reduces manual work for community managers Fits Sngine’s algorithm-free philosophy while preventing inactivity Summary for Developer > Build a lightweight, transparent popularity widget above the feed showing posts where conversation is actually happening. Keep the chronological timeline intact, but provide guidance and recognition to stimulate activity and engagement in the absence of a feed algorithm. #concepts #sngine
    Like
    Love
    2
    5 Comentários 0 Compartilhamentos 667 Visualizações 0 Anterior
  • Introducing MusicKraze Social - Built on Sngine
    Hey Sngine community!
    I wanted to share my project MusicKraze Social (musickraze.com) - a music-focused social network I've been building on Sngine. Over the past several months, I've been developing custom plugins to transform the platform into a dedicated space for music lovers, and I thought you all might find some of these useful or inspiring for your own projects.
    Custom Plugins I've Built
    Here's what I've added to extend Sngine's functionality:
    MK Spotify
    Full Spotify integration with search, play, playlist management, recommendations engine, and the ability to share tracks directly to the MusicKraze feed. Users can connect their Spotify accounts, browse their library, and discover new music without leaving the site.
    Apple Music Sharing
    Integrated Apple Music search and sharing alongside Spotify, giving users options regardless of their preferred streaming platform.
    MK Shazam
    A song identifier that uses the browser's microphone to listen to music playing nearby, identifies the track via the Shazam API, then lets users share what they're listening to. Works just like the Shazam app but built right into the social network.
    MK Discover
    A music discovery section combining Spotify's trending artists data with Discogs database info. Displays rich artist details, discography, and embeds top tracks for easy listening and sharing.
    MK Concerts
    Concert and event finder using the Ticketmaster API. Users can search for shows near them, see event details, and share concerts with the community.
    MK Originals
    A place for members to upload their own original music - covers, original songs, instrumentals. Supports video and audio uploads up to 25MB with admin moderation tools and feed sharing.
    AI Studio
    AI image generator using the Replicate API plus a post enhancer/chatbot that helps users polish their posts before sharing.
    MK Games
    Integrated Gamezop games with score saving and leaderboards to add some fun engagement features.

    All these plugins follow Sngine's standard structure (bootloader.php, page_header/page_footer, Smarty templates) so they integrate cleanly with the platform.
    If anyone's interested in building similar music-focused features or wants to chat about extending Sngine for niche communities, I'm happy to share what I've learned along the way!
    Check it out: musickraze.com
    Keep building!
    — KrAzE
    Introducing MusicKraze Social - Built on Sngine 🎵 Hey Sngine community! I wanted to share my project MusicKraze Social (musickraze.com) - a music-focused social network I've been building on Sngine. Over the past several months, I've been developing custom plugins to transform the platform into a dedicated space for music lovers, and I thought you all might find some of these useful or inspiring for your own projects. Custom Plugins I've Built Here's what I've added to extend Sngine's functionality: 🎧 MK Spotify Full Spotify integration with search, play, playlist management, recommendations engine, and the ability to share tracks directly to the MusicKraze feed. Users can connect their Spotify accounts, browse their library, and discover new music without leaving the site. 🍎 Apple Music Sharing Integrated Apple Music search and sharing alongside Spotify, giving users options regardless of their preferred streaming platform. 🎤 MK Shazam A song identifier that uses the browser's microphone to listen to music playing nearby, identifies the track via the Shazam API, then lets users share what they're listening to. Works just like the Shazam app but built right into the social network. 🔍 MK Discover A music discovery section combining Spotify's trending artists data with Discogs database info. Displays rich artist details, discography, and embeds top tracks for easy listening and sharing. 🎪 MK Concerts Concert and event finder using the Ticketmaster API. Users can search for shows near them, see event details, and share concerts with the community. 🎸 MK Originals A place for members to upload their own original music - covers, original songs, instrumentals. Supports video and audio uploads up to 25MB with admin moderation tools and feed sharing. 🖼️ AI Studio AI image generator using the Replicate API plus a post enhancer/chatbot that helps users polish their posts before sharing. 🎮 MK Games Integrated Gamezop games with score saving and leaderboards to add some fun engagement features. All these plugins follow Sngine's standard structure (bootloader.php, page_header/page_footer, Smarty templates) so they integrate cleanly with the platform. If anyone's interested in building similar music-focused features or wants to chat about extending Sngine for niche communities, I'm happy to share what I've learned along the way! Check it out: musickraze.com Keep building! 🚀 — KrAzE
    Love
    2
    2 Comentários 0 Compartilhamentos 3KB Visualizações 0 Anterior
  • Do you like spammers in your site posting things that is irrelevant to your niche/theme? What actions do you take against their spam posts?
    Do you like spammers in your site posting things that is irrelevant to your niche/theme? What actions do you take against their spam posts?
    1
    5
    0
    1 Comentários 0 Compartilhamentos 3KB Visualizações 0 Anterior
  • Hello everyone!

    A few days ago, we announced that we will be introducing a new AI called EchoAI for Sngine.
    Would you prefer it to be built with pure PHP, or with Laravel for a more modern and flexible structure?

    Check the official post: https://scriptstribe.com/posts/1152
    Hello everyone! A few days ago, we announced that we will be introducing a new AI called EchoAI for Sngine. Would you prefer it to be built with pure PHP, or with Laravel for a more modern and flexible structure? Check the official post: https://scriptstribe.com/posts/1152
    SCRIPTSTRIBE.COM
    Zinkly Studio - Hello everyone! We are excited to announce that...
    Hello everyone! We are excited to announce that for quite some time now, we have been successfully working on a project called EchoAI, which allows Sngine users to: ✨Interact in real-time using DeepSeek and OpenAI API keys. ✨Receive content and responses instantly. ✨Add custom commands directly...
    Like
    1
    1 Comentários 0 Compartilhamentos 5KB Visualizações 0 Anterior
  • https://xymddisad.com/posts/234
    https://xymddisad.com/posts/234
    XYMDDISAD.COM
    xymddisad - Say hello to social gravity on Xymddisad. You can now...
    Say hello to social gravity on Xymddisad. You can now tag people on your posts, pull your friends into the story instantly, and spark conversations that travel fast. Try it out and let your connections light up your feed.
    Love
    1
    1 Comentários 0 Compartilhamentos 2KB Visualizações 0 Anterior
  • https://xymddisad.com/posts/189
    https://xymddisad.com/posts/189
    XYMDDISAD.COM
    Genius Studios
    A Nigerian-based digital platform that combines social networking, e-commerce, and digital services in one easy-to-use space.
    0 Comentários 0 Compartilhamentos 3KB Visualizações 0 Anterior
  • I’ve had this plugin for the sitemap for a few days now, but I’m not getting any information. How can I install it? This plugin ( https://scriptstribe.com/posts/187 ) can’t be downloaded because it’s out of stock that’s ridiculous. Why do I have to wait such a long time for something like this? We should have the option to install plugins manually without depending on this system when it’s not available.
    #sitemaps #plugin #outofstock

    I’ve had this plugin for the sitemap for a few days now, but I’m not getting any information. How can I install it? This plugin ( https://scriptstribe.com/posts/187 ) can’t be downloaded because it’s out of stock that’s ridiculous. Why do I have to wait such a long time for something like this? We should have the option to install plugins manually without depending on this system when it’s not available. #sitemaps #plugin #outofstock
    SCRIPTSTRIBE.COM
    Plugin System Sngine Add-on
    Product unavailable to avoid new downloads until next update.... ScriptsTribe Plugin System for Sngine ⚙️ Developer Tool · v4 💰 Price: Free (donations are welcome) Unlock endless possibilities with the ScriptsTribe Plugin System for Sngine — a lightweight yet powerful...
    0 Comentários 0 Compartilhamentos 6KB Visualizações 0 Anterior
  • https://xymddisad.com/posts/159
    https://xymddisad.com/posts/159
    XYMDDISAD.COM
    xymddisad - Be prepared for what's to come next......
    Be prepared for what's to come next... #birthingNewIdeas
    Love
    1
    0 Comentários 1 Compartilhamentos 4KB Visualizações 0 Anterior
  • https://xymddisad.com/posts/114
    https://xymddisad.com/posts/114
    XYMDDISAD.COM
    Genius Studios
    A Nigerian-based digital platform that combines social networking, e-commerce, and digital services in one easy-to-use space.
    Like
    Love
    2
    0 Comentários 0 Compartilhamentos 2KB Visualizações 0 Anterior
  • This is your chance to make something beautiful happen! Lush Hair is giving you (yes, YOU!) the opportunity to nominate your favorite salon or stylist for the Lush Pink My Salon Upgrade! 💇🏽‍♀ And if you’re a hairstylist yourself — don’t wait! Nominate your own salon
    https://xymddisad.com/posts/87
    💖 This is your chance to make something beautiful happen! 💖 Lush Hair is giving you (yes, YOU!) the opportunity to nominate your favorite salon or stylist for the Lush Pink My Salon Upgrade! 💇🏽‍♀✨ And if you’re a hairstylist yourself — don’t wait! Nominate your own salon https://xymddisad.com/posts/87
    XYMDDISAD.COM
    xymddisad - 💖 This is your chance to make something beautiful...
    💖 This is your chance to make something beautiful happen! 💖 Lush Hair is giving you (yes, YOU!) the opportunity to nominate your favorite salon or stylist for the Lush Pink My Salon Upgrade! 💇🏽‍♀✨ And if you’re a hairstylist yourself — don’t wait! Nominate your own salon...
    Love
    1
    0 Comentários 0 Compartilhamentos 3KB Visualizações 0 Anterior
  • Ready! hope everything goes smoothly, Requires Plugin System https://scriptstribe.com/posts/28
    Ready! hope everything goes smoothly, Requires Plugin System https://scriptstribe.com/posts/28
    SCRIPTSTRIBE.COM
    Advanced Sitemaps Sngine Add-on
    Supercharge your Sngine site’s SEO and indexing! Advanced Sitemaps gives you everything you need to dominate Google, Bing, and beyond—with dead-simple sitemap automation, instant SEO auditing, and copy-paste robots.txt for perfect crawling. This addon REQUIRES the ScriptsTribe...
    0 Comentários 0 Compartilhamentos 5KB Visualizações 0 Anterior
  • Plugin System updated with better installation
    https://scriptstribe.com/posts/187
    Helpcenter installation tutorial also updated
    https://scriptstribe.com/helpcenter/question/42
    Please ead all and follow the tutorial word by word.
    Plugin System updated with better installation https://scriptstribe.com/posts/187 Helpcenter installation tutorial also updated https://scriptstribe.com/helpcenter/question/42 Please ead all and follow the tutorial word by word.
    SCRIPTSTRIBE.COM
    Sngine Plugin System
    ScriptsTribe Plugin System for Sngine ⚙️ Developer Tool · v4 💰 Price: Free (donations are welcome) Unlock endless possibilities with the ScriptsTribe Plugin System for Sngine — a lightweight yet powerful framework that transforms how you extend your site. 🚀 What’s...
    Like
    2
    0 Comentários 0 Compartilhamentos 5KB Visualizações 0 Anterior
Páginas impulsionada