Omitir al contenido

Threaded post support for NodeBB

Let's Build It
146 5 55.7k 1

Related Topics
  • Setup OGProxy for use in NodeBB

    Movido Let's Build It ogproxy opengraph npm node
    110
    2
    21 Votos
    110 Mensajes
    29k Visitas
    @crazycells said in Setup OGProxy for use in NodeBB: are they cached for each user separately? No. It’s a shared cache @crazycells said in Setup OGProxy for use in NodeBB: additionally, this is also handling youtube videos etc, right? No. This is handled by nodebb-plugin-ns-embed
  • 11 Votos
    14 Mensajes
    3k Visitas
    @dave1904 excellent news. Thanks for the feedback
  • Changing Background on NodeBB

    Solved Customisation background image nodebb
    4
    0 Votos
    4 Mensajes
    1k Visitas
    @cagatay You’d target the body tag and use the below line of CSS background: url(/assets/customcss/backgrounds/default/default.png) no-repeat center center fixed; Obviously, you need to change the path to suit where your image is being stored. More info around the background property can be found here https://www.w3schools.com/cssref/css3_pr_background.php
  • Title on homepage of nodebb forum

    Solved Customisation nodebb
    2
    1 Votos
    2 Mensajes
    1k Visitas
    @eveh Welcome board The code you are referring to is custom written as no such functionality exists under NodeBB. However, adding the functionality is relatively trivial. Below are the required steps Navigate to /admin/appearance/customise#custom-header Add the below code to your header, and save once completed <ol id="mainbanner" class="breadcrumb"><li id="addtext">Your Title Goes Here</li></ol> Navigate to /admin/appearance/customise#custom-js and add the below code, then save $(document).ready(function() { $(window).on('action:ajaxify.end', function(data) { // Initialise mainbanner ID, but hide it from view $('#mainbanner').hide(); var pathname = window.location.pathname; if (pathname === "/") { $("#addtext").text("Your Title"); $('#mainbanner').show(); } else {} // If we want to add a title to a sub page, uncomment the below and adjust accordingly //if (pathname === "/yourpath") { //$("#addtext").text("Your Title"); //$('#mainbanner').show(); //} }); }); Navigate to /admin/appearance/customise#custom-css and add the below CSS block .breadcrumb { right: 0; margin-right: auto; text-align: center; background: #0086c4; color: #ffffff; width: 100vw; position: relative; margin-left: -50vw; left: 50%; top: 50px; position: fixed; z-index: 1020; } Note, that you will need to adjust your CSS code to suit your own site / requirements.
  • Error install plugin

    Solved Customisation plugin nodebb
    8
    1
    1 Votos
    8 Mensajes
    4k Visitas
    @pobojmoks Not WP plugin but nodeBB but it a known bug
  • NodeBB slow after DB recovery

    Solved Performance performance nodebb
    1
    5 Votos
    1 Mensajes
    650 Visitas
    Nadie ha respondido aún
  • NodeBB Footer

    Solved Customisation footer nodebb
    10
    1 Votos
    10 Mensajes
    2k Visitas
    @phenomlab said in NodeBB Footer: @jac and you. Hope all is well and you recover quickly Thanks pal
  • [NodeBB] Creating new user to auto post content

    Solved Customisation
    3
    0 Votos
    3 Mensajes
    1k Visitas
    @phenomlab many thanks Mark .