function

  1. ENXF NET

    XF 1 Tip Snow Effect

    Guide to make your forum with falling Snow flakes Step 01 : Create a custom .js file Open Notepad++ and paste the codes below and save as .js file (Eg. Snow.js) // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com //...
  2. ENXF NET

    XF 1 Tip How to find the Xenforo template you need visually!

    Drag and drop this into your bookmarks bar: javascript:(function() javascript:(function() {XenForo.alert($('#content').attr('class'), '', 5000);}()) Click the bookmark when in your XF install: Credit: Made by a good friend of mine! No guarantees of ANY kind! Rate if it works! Complain if it...
  3. ENXF NET

    XF 1 Tip Tutorial Add extra fields to any content using separate table

    Let's consider the wiki addon. Its articles and comments are extended posts in some pre defined node. So there is a following problem: we need to generate prepared version of post with added table of contents and autolinking since onfly processing of that would kill performance. We need extra...
  4. ENXF NET

    XF 1 Tip Tutorial Understanding the Xenforo Class Proxy System

    Disclaimer: This is a technical explaination and is geared towards developers. A working knowledge of PHP, OOP, and MVC is assumed. What is the XenForo Class Proxy System? In a nutshell, this system allows several add-ons to extend the same class within XenForo using its code event listener...
  5. ENXF NET

    XF 1 Tip Tutorial How to Create your own helpers

    Helpers provide extra functions that you can use inside the XenForo templates. Currently there are many Helpers, following some them: avatar -> Helper to fetch the URL of a user's avatar. username -> Produces a <a href="members/username.123" class="username">Username</a> snippet. usertitle ->...
  6. ENXF NET

    Xenforo 2.0 Remove Quick Thread function

    DESCRIPTION This template modification allows you to remove quick thread function in forums pages in a easy way HOW TO ? Go to forum_view template and search this part of code (around line 147), delete it and save. <xf:macro template="thread_list_macros" name="quick_thread"...
Top