Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups
    1. Home
    2. crazycells
    • Profile
    • Following 0
    • Followers 1
    • Topics 34
    • Posts 207
    • Best 34
    • Groups 1

    crazycells

    @crazycells

    46
    Reputation
    162
    Profile views
    207
    Posts
    1
    Followers
    0
    Following
    Joined Last Online
    Website yesilkartforum.com/forum/ Location USA

    crazycells Follow
    Users with 50 posts

    Best posts made by crazycells

    • RE: Getting rid of "x months ago" feature

      @CaptainK

      Screen Shot 2020-08-13 at 10.03.47 PM.png

      You can adjust from ACP > Settings > Post ... it is "Necro Threshold" part... Set 0 to disable...

      posted in Technical Support
      crazycells
      crazycells
    • RE: Show categories vertically in Persona

      a related topic you can get some info:

      https://community.nodebb.org/topic/14061/persona-theme-subcategory-view-on-main-page

      posted in Technical Support
      crazycells
      crazycells
    • RE: Who is using NodeBB?

      @baris please add us too

      posted in General Discussion
      crazycells
      crazycells
    • RE: Persona Theme - Subcategory view on main page

      @omega Thanks, somehow your code was always flexing the icon only... But I managed to get two column view with this CSS addition on persona theme: (on 1.12.2)

      .category-children .category-children-item {
          float: left ;
          width: 20em ;
      }
      
      

      Thanks a lot, I got the em idea from you 🙂 until then I was unsuccessfully trying with %

      here is how it looks:
      alt text

      posted in Technical Support
      crazycells
      crazycells
    • RE: How to gray out posts that have negative reputation?

      @JKSH said in How to gray out posts that have negative reputation?:

      In stackoverflow.com, posts that have more downvotes than upvotes become grayed out so that readers will focus more on the higher-quality posts.

      In a NodeBB forum, Moderators can see deleted posts in grayed-out mode.

      Is there a way to gray out NodeBB posts that have more downvotes than upvotes?

      Check this plugin out:

      https://community.nodebb.org/topic/744/nodebb-plugin-dwnvtr-downvoter-plugin?_=1598982091665

      posted in General Discussion
      crazycells
      crazycells
    • A tip for custom color picking for categories

      From time to time, I check other NodeBB sites to get some ideas... I sometimes see people use custom colors for their categories, but colors in the forum are not compatible with each other in terms of toning...

      So, if you want to customize colors in the forum, I recommend using the website below for color picking... You can pick whatever color you like, but if you want to use for example tone at 400 for green, use 400 for other colors too...

      Overall, using the same tone for different colors will create more aesthetically pleasant pages...

      Screen Shot 2020-05-21 at 1.50.19 PM.png

      posted in Technical Support
      crazycells
      crazycells
    • RE: Simple Night Mode for NodeBB

      @MJ said in Simple Night Mode for NodeBB:

      body.lights-out .fa.fa-fw.fa-comment-o{
      color: white;
      }
      /Mobiel/
      .navbar-default .navbar-toggle {
      border-color: #fff;
      }

      In case, anyone wants to make the tags and pagination container dark as well, we have this addition to the code above:

      body.lights-out .fa.fa-fw.fa-comment-o{
          color: white;
      }
      
      body.lights-out .category>ul>li .tag-list .tag {
          background-color: #404040;
      }
      
      body.lights-out .pagination a{
          color: #ffffff;
          background-color: #404040;
          border-color: #232323;
      }
      /*Mobiel*/
      .navbar-default .navbar-toggle {
          border-color: #fff;
      }
      

      Edit: You can also add this for active page on the pagination

      body.lights-out .page.active a{
          background-color: #848484;
      }
      
      
      posted in NodeBB Themes
      crazycells
      crazycells
    • RE: sticky topic info box

      @onur-baran

      I believe this CSS change should work:

      .topic .topic-header {
      position: unset;
      }
      
      posted in Technical Support
      crazycells
      crazycells
    • RE: translation for "post quick reply"

      @sharonyue said in translation for "post quick reply":

      @crazycells @baris I have no idea how to pull using git... Could you please translate post quick reply to 快速回复 in Chinese? I am sure this is the best translation.

      I do not know how Chinese is shortened, I guess zh-CN ? Maybe others can confirm... For pull request, first click here:

      https://github.com/NodeBB/nodebb-theme-persona/tree/master/languages

      then click "create new file" and for path after /languages/ write:

      .../languages/zh-CN/persona.json

      To create the file, in "edit file section", copy paste this with chinese translations...

      {
          "mobile-menu-side": "Switch which side each mobile menu is on",
          "post-quick-reply": "Post quick reply"
      }
      

      on the right side, delete "Switch which side each mobile menu is on" and replace it with chinese translation, and then delete "Post quick reply" and replace it with chinese translation...

      then click create pull request, rest will be taken care of by the team...

      posted in NodeBB Development
      crazycells
      crazycells
    • RE: Embed Live Content

      @kevin-redx said in Embed Live Content:

      How can I embed a YouTube live video on my forum?

      I have just tried a link from youtube.com/live

      iframely does the job... fyi...

      Screen Shot 2019-06-21 at 6.20.23 PM.png

      posted in NodeBB Plugins
      crazycells
      crazycells

    Latest posts made by crazycells

    • RE: [nodebb-plugin-ignore-users] Ignore Users for NodeBB

      let me make my yearly update 🙂

      Is this project abandoned? It would still be good to have both "ignore" and "block" functions... They both have different utilizations in our forum.

      If anyone have technical knowledge and skills, it would be great to make this plugin compatible with the current NodeBB version.

      posted in NodeBB Plugins
      crazycells
      crazycells
    • RE: Banning problem

      @eesty said in Banning problem:

      I've some overzealous moderators who like to ban people for trivial things.

      Can I stop moderators from being able to ban users?

      Also, is there are a way to let these moderators put users on a timed suspension instead? Or something like that...

      I know what you need 🙂 it is "mute function for users". I know because we also need that. It works very well in big groups in Facebook etc. I think it will be a very great addition to NodeBB forums...

      I proposed this a while back as a separate function than "ban" function. Banning is just not proper way to react in some cases, muting people could work very well in many cases and help to moderate big groups.

      I would like to bring up this topic again:
      https://community.nodebb.org/topic/14850/mute-function-for-users

      posted in Technical Support
      crazycells
      crazycells
    • RE: mute function for users

      https://github.com/NodeBB/NodeBB/issues/8426

      AliCihan created this issue in NodeBB/NodeBB

      closed mute function for users #8426

      posted in Feature Requests
      crazycells
      crazycells
    • RE: sticky topic info box

      @onur-baran

      I believe this CSS change should work:

      .topic .topic-header {
      position: unset;
      }
      
      posted in Technical Support
      crazycells
      crazycells
    • RE: How can i make it put /forum before all requests?

      @jim-bridger said in How can i make it put /forum before all requests?:

      I want my site to be at sdfgsdfgsdgf.com/forum, how do I do this?

      For example I want this:

      <link rel="stylesheet" type="text/css" href="/assets/client.css?v=d5fbv7jt1og" />
      <link rel="icon" type="image/x-icon" href="/assets/uploads/system/favicon.ico?v=d5fbv7jt1og" />
      <link rel="manifest" href="/manifest.json" />

      To load as this:

      <link rel="stylesheet" type="text/css" href="/forums/assets/client.css?v=d5fbv7jt1og" />
      <link rel="icon" type="image/x-icon" href="/forums/assets/uploads/system/favicon.ico?v=d5fbv7jt1og" />
      <link rel="manifest" href="/forums/manifest.json" />

      Are they hardcoded? So I could just edit the theme html?

      As far as I understood your question, you should install your NodeBB forum as a subfolder...

      I do not think you can change it afterwards. You can check these two topics:

      https://community.nodebb.org/topic/668/installing-nodebb-in-a-subfolder-of-another-site

      https://community.nodebb.org/topic/533/installation

      posted in Technical Support
      crazycells
      crazycells
    • RE: Make uploaded files private...?

      @gotwf said in Make uploaded files private...?:

      Old thread but I wonder if consideration has been given to the potential for abuse with such a scheme? Or is/was it your intention to create a warez depo??

      Sorry, I was not sure... Is this question for me to answer? Or to the first user on the topic?

      posted in Technical Support
      crazycells
      crazycells
    • RE: snowing theme

      @oplik0 thanks... very easy indeed 🙂

      posted in Technical Support
      crazycells
      crazycells
    • snowing theme

      It is currently snowing in nodebb 🙂

      can you please explain the steps to create this theme? Is it easy to implement?

      Thanks.

      posted in Technical Support
      crazycells
      crazycells
    • RE: Make uploaded files private...?

      @baris said in Make uploaded files private...?:

      That setting just prevents users that are not logged in from accesing the files.

      is it possible to have both public and private file uploads on the forum?

      Now, I see that ACP asks for the file extension to make private, however in our case we want most of the pdfs to be public, but sometimes there are some pdfs that contains personal contact information which we do not want to expose outside so easily.

      Would it be possible (or easy) to create different upload buttons/systems for public or private files?

      The same question for urls... Is it possible to create private url? Sometimes, we share box/dropbox links to download some files, I think it would be better if those "url"s are not seen publicly.

      posted in Technical Support
      crazycells
      crazycells
    • RE: receiving notification when the followed user posts

      @julian said in receiving notification when the followed user posts:

      @crazycells Looks like you have posted it here https://github.com/NodeBB/NodeBB/issues/9145

      Thanks!

      Yes, thanks for linking.

      Actually, topic can be moved to "Feature Requests" since right now it is not an available feature.

      posted in Feature Requests
      crazycells
      crazycells