thread

  1. ENXF NET

    xF2 Add-on AndyB New thread limit 1.7

    Limits the number of new threads based on time and forum selection. (Example of error message) (Example of Options page) Features: All phrases start with newthreadlimit_ for your convenience. Installation: Download Andy-NewThreadLimit-1.3.zip and unzip it. Copy the...
  2. ENXF NET

    xF2 Add-on [SVG] Sticky Threads Separation 2.0.6.1

    Sticky Threads Separation 2.0.6.1 - plug-in for XenForo 2 which will help you in the design of fixed themes. Ability to change plugin properties in the style settings
  3. ENXF NET

    xF2 Add-on Welcome thread 1.5

    Creates a welcome thread for your new members. (Example of Welcome thread) (Example of Options page) Features: Creates welcome thread for the new member. Creates an alert for the new member about the new thread. All phrases start with welcomethread_ for your convenience. Installation...
  4. ENXF NET

    xF2 Add-on AndyB Birthday thread 2.4

    Automatically creates birthday threads for your members. (Example of Birthday thread) (Example of Options page) (Example of User group permissions) Features: Automatically creates birthday threads for your members. Alert is sent letting the member know about the birthday thread. Follows...
  5. ENXF NET

    xF2 Add-on AndyB New thread email staff 1.3

    Sends an email to staff when a new thread is created. This is a great way for staff to be notified of a new thread as replying to new threads quickly is important. (Example of email sent) (Example of Options page) Installation: Download Andy-NewThreadEmailStaff-1.2.zip and unzip it. Copy...
  6. ENXF NET

    xF2 Add-on AndyB ThreadReplyLimit 1.2

    Limits the number of replies allowed per thread. (Example of limit message) (Example of Options page) Features: All phrases start with threadreplylimit_ for your convenience. Installation: Download Andy-ThreadReplyLimit-1.1.zip and unzip it. Copy the src/addons/Andy/ThreadReplyLimit...
  7. ENXF NET

    xF2 Add-on AndyB Thread starter reply only 2.2

    Allows only the thread starter to post replies. (Example of member viewing a thread when they are not the thread starter) (Example of Options page) Features: Only the thread starter and moderators are allowed to reply. All phrases start with threadstarterreplyonly_ for your convenience...
  8. ENXF NET

    xF2 Add-on AndyB Ban thread - threads with blocked XenForo 2 2.0

    When a ban is issued, a new thread is automatically created for staff members. (Example of Ban thread) (Example of Options page) Features: Cron entry runs every 10 minutes and will create a Ban thread if a member has been banned. All phrases start with banthread_ for your convenience...
  9. ENXF NET

    xF2 Add-on [XenConcept] Who Read This Thread 2.0.1

    This addon allows you to see who has read this discussion. You can choose the location you want thanks to the widget. You can view the readers either by username or by avatar. Feature summary : Node selector Display days (limit) Use system Widget Main Options : Enable / Disable Node selector...
  10. ENXF NET

    xF2 Add-on Question Threads 2.1.2

    Description This addon allows users to create questions, mark them solved/unsolved and select best answers. This is an open source addon. You can visit GitHub repository for source code. All my addons are free... But if you want to Be informed of all news about developing new addons Suggest...
  11. ENXF NET

    xF2 Add-on ForoAgency - Reward Thread 1.0.16

    Features: Reward and Unreward thread Member can ask for reward Pending request for reward (when member ask for it) Trophy Permissions View rewarded thread from a member Moderator log Alert when a thread is rewarded or unrewarded
  12. ENXF NET

    xF2 Add-on AndyB Welcome thread 2.0

    Creates a welcome thread for your new members. (Example of Welcome thread) (Example of Options page) Features: Creates welcome thread for the new member. Creates an alert for the new member about the new thread. All phrases start with welcomethread_ for your convenience. Installation...
  13. ENXF NET

    xF2 Add-on AndyB Thread view count 2.0

    Shows number of thread views by visitor type. This add-on is useful to see just how many visitors are viewing threads on your forum. (Example of Thread view count link) (Example of Thread view count page) (Example of Options page) (Example of User group permissions) Features: All phrases...
  14. ENXF NET

    XF 1 Tip How to add "fake views" on thread

    In this tutorial I will show you how to make fake views on a topic. 1. Go into your database 2. Scroll until you find the "xf_thread" table and click it / Option-click alt + f and then write xf_thread 3. Click "Edit" on the thread you would like to put fake views on. 4. Click on view_count and...
  15. ENXF NET

    XF 1 Tip Show message (notice) when creating thread in a specific forum

    Show message (notice) when creating thread in a specific forum This hows a notice at the "Create Thread" page in a specific forum. This can be useful to ask the users to re-read specific forum rules. Create a New Notice (Add title, message...) Go to Page Criteria Select the Node(s) you...
  16. ENXF NET

    XF 1 Tip Thread Info add-on customization

    Requirements for this customizations: [SSD] Thread Info With code below you'll change this look: ... to that: Add code below to EXTRA.css template: /*** Thread Info Add-on customization ***/ .ssd_threadinfo2 { border: 0 !important; padding: 0 !important; background: none !important...
  17. ENXF NET

    XF 1 Tip Responsive AdSense

    One of the biggest concerns with 1.2 has been how to activate the responsive design while still using AdSense. Obviously as the various page widths are now totally dynamic, simply adding a Google ad slot in the normal manner won't work. Once the browser width reduces below the width of the...
  18. ENXF NET

    XF 1 Tip Tutorial Understanding Conditional Statements

    Conditional Statements The following conditional statements will only work in templates which support the arguments and parameters. Statements can be expanded using AND, OR, xen:else and xen:elseif. Replacing == with != in the following examples will change the condition from true to false...
  19. 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...
  20. ENXF NET

    XF 1 Tip Rebuild user post counts (query)

    This will recalculate and update the post counts for all users at once. This is a large query that may take a while to finish. UPDATE xf_user AS user SET message_count = ( SELECT COUNT(*) FROM xf_post AS post LEFT JOIN xf_thread AS thread ON (thread.thread_id = post.thread_id)...
Top