Small images preview in topic

General Discussion
  • Hello! I need to post many images in post (for example 100px width) and on click enlarge to full size (for example in popup frame). I'm try nodebb-plugin-image-sizer (but it not comptiable with latest version of NodeBB).
    How plugin I can use for change image size in post?


Suggested Topics


  • 0 Votes
    10 Posts
    216 Views

    @baris

    You're the best. Thank you.

    fyi I had this idea but didn't try because it says "Custom Category", I thought you can only choose one. Works perfectly now.

  • 0 Votes
    3 Posts
    143 Views

    @crazycells Thank you I will try but it seems uncompatible with the latest versions

  • 0 Votes
    1 Posts
    276 Views

    i wana to post some topics by postman software in my project,but alway failed.so i need someone help.thanks

  • Hot topics

    General Discussion
    0 Votes
    2 Posts
    1k Views

    @hnahli there is a daily/weekly, etc digest email option available

  • 0 Votes
    8 Posts
    3k Views

    I have the same issue:

    if i press the smiley button in the editor, all smileys get displayed correctly. If I add one to the post though, they wont get displayed correctly:

    the url to the image is always the localhost url.

    my config.json:

    { "url": "http://localhost", "port": ["4567", "4568", "4569"], "secret": "cce14e14-b1f8-4e2d-b859-3885564a4e6e", "database": "redis", "redis": { "host": "127.0.0.1", "port": "6379", "password": "", "database": "0" } }

    my nginx config: (path and server_name changed)

    upstream io_nodes { ip_hash; server 127.0.0.1:4567; server 127.0.0.1:4568; server 127.0.0.1:4569; } server { listen 80; server_name nodebb.example.org; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_redirect off; # Socket.io Support proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; gzip on; gzip_min_length 1000; gzip_proxied off; gzip_types text/plain application/xml application/x-javascript text/css application/json; location @nodebb { proxy_pass http://io_nodes; } location ~ ^/(images|language|sounds|templates|uploads|vendor|src\/modules|nodebb\.min\.js|stylesheet\.css|admin\.css) { root /path/to/nodebb/public/; try_files $uri $uri/ @nodebb; } location / { proxy_pass http://io_nodes; } }