Skip to content

General Discussion

A place to talk about whatever you want

3.8k Topics 23.3k Posts
  • 0 Votes
    2 Posts
    52 Views
    S

    Ok I realized that the posts content need to be limited to around 95% so I tried to do it that way

    .posts .content { width: 95%; } .posts .content iframe { width: 112% !important; }

    But it seems like it's not working but then i used min-width: 100% and it seems to be what I want ... can anyobody explain me why?

    8a337b37-f46c-4706-83ce-af6f1b8a87f7-image.png

  • Checklist to avoid NodeBB forum Downtime

    4
    0 Votes
    4 Posts
    3k Views
    phenomlabP

    @B-738 See https://docs.nodebb.org/configuring/running/ 🙂 and also https://sudonix.org/topic/399/restarting-nodebb-on-boot?_=1710149053041

  • Solr searching engine is bad

    22
    3 Votes
    22 Posts
    2k Views
    S

    In regards to that topic https://community.nodebb.org/topic/16852/search-with-wildcards/4

    I am wondering how mature the meilisearch is now and if it pays off risk a switch?

  • SEO plugins for nodebb

    2
    0 Votes
    2 Posts
    112 Views
    T

    The second question as an update for this topic is: how do I add a trailing slash to the URI of an arbitrary topic?
    Raw nginx rewrite as follows doesn't do the trick

    rewrite ^([^.]*[^/])$ $1/ permanent;

    Update:
    I need trailing slash in order to eliminate page_with_redirect issue.

  • 4 Votes
    5 Posts
    512 Views
    serverplayerS

    Wow, that's really nice. The card view looks quite neat, and the threaded posts is very creative! Maybe I'll look into the implement of threaded posts through your code, it's more efficacious to read than normal style.

  • Default robots.txt for NodeBB 3.x

    2
    0 Votes
    2 Posts
    91 Views
    barisB

    If you do not have a custom robots.txt value set in the admin panel then the default NodeBB sends is below.

    User-agent: * Disallow: /admin/ Disallow: /reset/ Disallow: /compose Sitemap: https://yournodebb.com/sitemap.xml
  • Search with wildcards?

    4
    0 Votes
    4 Posts
    244 Views
    S

    Coming back to this as searching is something which matters. Have not been here for a while, maybe there are probably also ai-related plugins available which help for better searching?

  • The accuracy of Page Views in ACP

    5
    0 Votes
    5 Posts
    146 Views
    crazycellsC

    @julian said in The accuracy of Page Views in ACP:

    Bots don't tend to register for accounts 😅

    at least for now :rofl:

  • Importing from Xenforo

    2
    1 Votes
    2 Posts
    88 Views
    julianJ

    The import plugin should still work, although it will migrate you to an older version of NodeBB (and you'll need to run a version upgrade afterwards).

    Not the end of the world though.

    Potentially you could reach out to the creator of Nitro Porter, though at present he does not support the migration TO NodeBB.

    However if you ask nicely then maybe he will do it 😁

  • Nodebb-Robot project published

    2
    2 Votes
    2 Posts
    116 Views
    crazycellsC

    @Sky凌空 thanks for the robot!

  • Chat and Search Behaviour NodeBB 3.x

    11
    0 Votes
    11 Posts
    252 Views
    yasasY

    Update: I did a local build and tested using multiple browsers. Still the behaviour is the same as https://community.nodebb.org/post/98116

  • 0 Votes
    2 Posts
    152 Views
    barisB

    There is nothing built in but you could quickly build something with custom js, for example something like below would redirect user to their profile edit page if they haven't filled out their about me section.

    $(window).on('action:ajaxify.end', async () => { if (app.user.uid > 0 && !app.user.aboutme) { const alerts = await app.require('alerts'); ajaxify.go('/me/edit'); alerts.alert({ type: 'info', message: 'Please fill in your about me section', }); } });
  • Stack of nodebb

    4
    0 Votes
    4 Posts
    137 Views
    the skyfoxxT

    @Omar-Ahmed Unfortunately I am unable to. I just evaluate it myself for my own use-case, but I don't work at NodeBB.

    your best bet is to install it on one of these services, picking MongoDB as the database

    Link Preview Image Index - NodeBB Documentation

    favicon

    (docs.nodebb.org)

  • 0 Votes
    3 Posts
    918 Views
    gasebuddyG

    New here, thought I 'd piggy bank this discussion, can a post be made directly in the group itself instead of posting from a categories, maybe I have a miss-configuration or something

  • 3 Votes
    15 Posts
    764 Views
    vijay kumavatV

    I will try to fetch user details in something like that on click/hover on user avatar.

    image.png

    i need your help in that once i start on this. Thank you

  • What is the name of the show in my nodebb forum?

    Unsolved
    3
    0 Votes
    3 Posts
    134 Views
    barisB

    @Thmhe please email [email protected] with the email you signed up and we can help you. The instance name is the name you picked during creation.

  • 0 Votes
    2 Posts
    108 Views
    B-738B

    All fixed in 3.6.X

    Upgrade to latest one

  • Add Recent Topics on single topic page

    3
    0 Votes
    3 Posts
    145 Views
    barisB

    Harmony doesn't have a widget area there so first thing would be to add that in. After that you can check the topic id to match the desired topic to render the widget. nodebb-widget-essentials has plenty of examples. For example the html widget can be displayed on specific categories or topics by using their ids.

    image.png

  • 1 Votes
    1 Posts
    74 Views
    Gliding9426G

    On PC I paste images in the textbox but on mobile, specifically on Android, you can't copy images in the clipboard, so how to post images? Must tell the users to host images in a 3rd party site like imgur and add it manually via markdown?

    Edit: sorry just found it, the upload button is the last button of the toolbar

    I was able to upload images by pressing that button

  • Display Specific group users in dropdown

    2
    0 Votes
    2 Posts
    70 Views
    barisB

    This is not something available out of the box, you would have to build it in a plugin to filter the topics based on uid.