Recent content by DL6

  1. DL6

    XF 2.2 Forum and thread types

    :love:
  2. DL6

    XF 1.5 Link to go directly to last post?

    Try using /Latest at the end of the thread link example: https://xenforo.com/community/threads/welcome-to-xenforo-2-1-assorted-improvements.155901/Latest
  3. DL6

    XF 2.1 Like button - extended smilies

    check this resource https://xenforo.com/community/resources/creating-a-custom-reactions-sprite-sheet.7324/
  4. DL6

    XF 2.1 Change banner image based on day number?

    Try putting your CSS in the PAGE_CONTAINER template <style> css here </style> or <xf:css> css here </xf:css>
  5. DL6

    XF 2.1 Forum hacked?

    It seems that the phrases have changed, look for the phrases that begin with thread_prefix and check if they have been modified. They were probably included in the translation you installed, I had a similar problem in the past with another translation.
  6. DL6

    XF 2.1 Change banner image based on day number?

    bannerimage_{{ date($xf.time, 'z') + 1 }}.jpg
  7. DL6

    XF 2.1 No admin login possible

    Try to disable your add-ons with the command line https://xenforo.com/community/threads/how-to-disabling-an-add-on.156909/#post-1300827
  8. DL6

    XF 2.1 How to edit XF templates and Styles/CSS in IDE/Editor?

    https://xenforo.com/community/resources/webdav-support-for-xenforo-2.6357/
  9. DL6

    XF 2.1 Prefixes for nodes?

    If you just want it only in the forum list something like this may be enough .node--id{id} .node-title:before { content: "New"; color: #fff; background: #f2930d; padding: 0px 4px; border-radius:4px; } Replace {id} with the node id
  10. DL6

    Not a bug There is a number in the title?

    https://xenforo.com/community/threads/whats-new-in-xenforo-2-0.133426/
  11. DL6

    Special Avatar for Banned Members

    Can you provide the full error with the stack trace and request state?
  12. DL6

    Special Avatar for Banned Members - Bug fix

    Now returning the full URI rather than relative URI when the argument $canonical is set to true Thanks to @truonglv for reporting it
  13. DL6

    Special Avatar for Banned Members

    DL6 updated Special Avatar for Banned Members with a new update entry: Bug fix Read the rest of this update entry...
  14. DL6

    XF 2.1 How to suppress latest post display on mobile?

    Add this to extra.less template @media (max-width: @xf-responsiveMedium) { .node-extra { display: none; } }
Top Bottom