Recent content by Some Guy

  1. Some Guy

    What do you want to see in 2.1?

    Email notification when a user is "awaiting approval."
  2. Some Guy

    XF 2.0 Rename Resources Dir

    Exactly what I was looking for, thanks!
  3. Some Guy

    XF 2.0 Rename Resources Dir

    I would like to change example.com/resources to example.com/articles
  4. Some Guy

    XF 2.0 How do I change node icon?

    extra.less template. Yes the id is in the URL.
  5. Some Guy

    XF 2.0 Remove Breadcrumbs from Page

    Thanks it worked! Extra.less: [data-container-key="node-5"] .p-breadcrumbs { display: none; } [data-container-key="node-5"] .p-title-value { display: none; }
  6. Some Guy

    XF 2.0 Remove Breadcrumbs from Page

    I would like to remove breadcrumbs from page node 5 only. I can remove them on forum_list by adding .forum_list .breadBoxTop { display: none; } .forum_list .breadBoxBottom { display: none; } .forum_list .titleBar { display: none; } but I want them removed from just Page Node 5. So basically...
  7. Some Guy

    XF 2.0 Disable Autocomplete In Template Editor

    How do I disable the autocomplete in template editor? Example when I type <div> it adds </div> automatically.
  8. Some Guy

    XF 2.0 What's New for guests with no "view thread content" permission

    I added to the condition statement to the thread_view template and solved my problem. Thanks!
  9. Some Guy

    XF 2.0 What's New for guests with no "view thread content" permission

    I found that {$innerContent|raw} in whats_new_wrapper template shows the posts but I can't seem to find where to edit it. Any advice?
  10. Some Guy

    XF 2.0 What's New for guests with no "view thread content" permission

    I set Groups & permissions > User group permissions > Unregistered / Unconfirmed > View thread content > No Now guests/unregistered can not view posts in example.com/whats-new/ Can I give a list of the 20 newest threads to guests who don't have view thread content? I want them to see the...
  11. Some Guy

    XF 2.0 How do I change node icon?

    This goes in extra.css. Change 69 to be your link forum node and image.png to be your image. // .node--id69.node--link .node-icon i:before { background-image: url('images/image.png'); background-size: 44px 44px; display: inline-block; width: 44px; height: 44px; content:""; }
  12. Some Guy

    XF 2.0 Sort Forums Alphabetically

    I used the sort button at the top right. Would be a nice feature in the future. Thank you for the reply.
  13. Some Guy

    XF 2.0 Sort Forums Alphabetically

    Is it possible to sort Forum Nodes in a category alphabetically?
  14. Some Guy

    XF 2.0 Server Error Logs

    Can I get some feedback on these errors?
  15. Some Guy

    XF 2.0 Selected Tab Highlight

    To remove the "New posts New Media..." part it is in PAGE_CONTAINER template line 355. <div class="hScroller-scroll"> This is the code to put a little padding: <div class="p-sectionLinks p-sectionLinks--empty"></div>
Back
Top Bottom