Navigation

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

    Timothy Fike

    @yariplus

    Community Rep

    SIEM Engineering (Splunk), Optiv Security Inc.

    774
    Reputation
    1383
    Posts
    8274
    Profile views
    32
    Followers
    1
    Following
    Joined Last Online
    Email tafike@gmail.com Location US Age 34

    yariplus Follow
    Global Moderator Community Rep

    Posts made by yariplus

    • RE: Remove postbar bottom topic (or making better but remove is also good)

      Your negative margin pushes the bar into the content above. Apply it only to the first bar.

      ul .post-bar {
          background-color: #1d1f21;
          margin-left: -10px;
          margin-top: -20px;
          margin-right: -10px;
      }
      
      posted in General Discussion
      yariplus
    • RE: something before .domain not working anymore

      @MJ It depends on your registrar.

      posted in Technical Support
      yariplus
    • RE: Custom homepage template

      I don't think this is possible without a plugin. Just adding a new template won't work. You need something to add an express.js route.

      posted in NodeBB Development
      yariplus
    • RE: something before .domain not working anymore

      It defaults to using this file because it is the first server block.

      Anyway, it looks like something changed on your DNS. It no longer responds to wildcard subdomains.

      posted in Technical Support
      yariplus
    • RE: something before .domain not working anymore

      See if there is anything in the /etc/nginx/conf.d/ directory.

      posted in Technical Support
      yariplus
    • RE: Can't get Google Analytics to work

      @karthiks It sounds like one of your other scripts is failing. This one of the reasons Google recommends it go in the head section. It's less likely another script failing will cause GA not to load properly.

      posted in Technical Support
      yariplus
    • RE: something before .domain not working anymore

      post nginx.conf

      posted in Technical Support
      yariplus
    • RE: Is it possible to post a topic on all categories?

      Hey there,

      You can do this already in core, without an extra plugin, using the recent topics widget. Make a category or subcategory with just the topics you want pinned. Then place the widget into the category.tpl template and set the category in the settings. You can change the look of the topic list in the node_modules/nodebb-widget-essentials/public/templates

      If you want more customization, there are a few plugins that do this too.
      nodebb-plugin-featured-threads
      nodebb-plugin-featured-topics-extended

      posted in General Discussion
      yariplus
    • RE: nodebb-plugin-quickstart

      lib in the root is server code, static/lib is client scripts.

      After much searching, there does not appear to be even the slightest semblance of any standard in the node world.

      posted in NodeBB Plugins
      yariplus
    • RE: Saving settings to v2 in my template file

      @julian oh, dang. you're right. That's the only one I've ever used. 😉

      @Jenkler rainbows uses it.

      https://github.com/yariplus/nodebb-plugin-rainbows/blob/master/public/templates/admin/plugins/rainbows.tpl#L144-L154
      https://github.com/yariplus/nodebb-plugin-rainbows/blob/master/library.js#L61-L72

      posted in NodeBB Development
      yariplus