xf2

  1. ENXF NET

    XF 2 Tip Tabbed Options

    Hey all, I've recently worked out how to create tabbed options in XF2. I don't have a lot of time right now so I'll make this brief. This guide will allow you to have a single option group for all your options, separating them into tabbed sections rather than forcing users to change option...
  2. ENXF NET

    XF 2.1 Style [XenGenTr] Mavis Style | Maviş Style 2.0.1

    A theme that I've coded for XenForo 2 and distributed free of charge. Warning: In order to install this theme, your system must have version 1.5.9 and above. Theme terms of use Unable to remove our signature and link in the theme! You can make the changes you want in the theme of the...
  3. ENXF NET

    XF2 Style Default-Small-Style Update Default-Small-Style for XenForo v2.07

    I have given the default style here a narrow shape.
  4. ENXF NET

    Xenforo 2.0 Stop Locked Private Conversations

    This simple template modification will remove registered users the possibility to start private conversations with the status Locked. I find it personally to be very annoying, as staff member, to receive questions or help requests which are (intentionally or not) locked, which also don't give me...
  5. ENXF NET

    Xenforo 2.0 Like, Quote, Reply Button Edit

    Simple template edit to make the Like, Quote and Reply links look like buttons. These codes are to be added in Extra.less template. The second code adds a zoom type mouse over effect to the like button for something different. If you do use code 2, you will not need to add code 1 and vice...
  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"...
  7. ENXF NET

    xF2 Add-on Social Footer 1.3.1

    With this modification you can link your social networks in your footer. Here are some pictures: And the ACP:
  8. ENXF NET

    xF2 Add-on Pacman online indicator 1.3.0

    Replace the online indicator with a Pacman. Created with CSS only. Online: Offline: You are welcome to suggest extensions and improvements and I will see what I can do about it.
  9. ENXF NET

    xF2 Add-on Bootstrap for Xenforo 2 2.1.0.1

    Bootstrap 4 for Xenforo 2 Bootstrap 4 theme for Xenforo 2
  10. ENXF NET

    Xenforo 2.0 Custom Staff Online Titles

    This is a short and simple guide to achieve custom staff online titles since ordinarily it shows your profile user title instead of a staff title for staff online. Go to the template widget_members_online. Find: <xf:if is="$user.is_staff"> <li class="block-row">...
  11. ENXF NET

    Xenforo 2.0 Separate sticky threads from normal ones

    As I was trying to separate normal threads from sticky ones I finally managed to do it and it was very simple. There is no need for template modification whatsoever. 1- Go to template forum_view 2- find this code <xf:macro template="thread_list_macros" name="item" arg-thread="{$thread}"...
  12. ENXF NET

    Xenforo 2.0 Create a usergroup legend in sidebar

    Create a new widget (Then go to Appearance > Widgets > 'Add Widget'), choose 'HTML' as your 'Widget definition' Widget key; Name it something rememberable. Display in positions; Click where you'd like it to be seen, I went for (Forum list: Sidebar) Template; Put the following: <div...
  13. ENXF NET

    Xenforo 2.0 Allow Moderators to View Forum while board is Inactive

    This tutorial is not hard and I find this modification quite useful if you want your staff/forum moderators to be able to view the forum while you're working on it. Also, it can be easily disabled in the ACP. I'm making this tutorial as noob friendly as possible by explaining each possible...
  14. ENXF NET

    Unmaintained Hide xenforo copyright

    Hello, today I will show you how to hide xenforo copyright. Let's do it 1. First go to admin panel and search for "extra.less". 2. Then put this code : .p-footer-copyright { display: none; }[/CODE]
  15. ENXF NET

    Unmaintained [cXF] Download button always on right side

    - without code - - with code - As you can see the download button is always on the right side. To achieve this add this code to your extra.less template: /*** Download button always on right side ***/ @media (min-width: @xf-responsiveMedium) { [data-template="xfrm_resource_view"] .p-title...
  16. ENXF NET

    Xenforo 2.0 How to make a tabbed widget

    First you need to configure the widgets you want in tabs without position (Write down the widgets keys) Now create a widget html and in the template put something like this <div class="block"> <div class="block-container"> <h2 class="widget-tabs block-tabHeader tabs hScroller"...
  17. ENXF NET

    Xenforo 2.0 Filter threads by prefix menu

    This will give you a prefix menu above the thread list which filters threads by prefix. (Much more obvious and intuitive than the existing Filter by prefix) You can do this via a template modification or just customise the template itself. Make a note of the prefix names and IDs (you can see...
  18. ENXF NET

    Xenforo 2.0 [XFTR] Horizontal Postbit Design

    All you have to do for this is to save the following codes in the extra.less template .message-avatar { float: left } @media (min-width: 650px) { .message-userDetails { display:inline-block; padding: 10px; min-width: auto; min-height: 96px } } @media...
  19. ENXF NET

    Xenforo 2.0 Sticky thread simple styling

    After trying ALMUSA's sticky thread separator, I went a bit further and decided to try customising the look of the stickies. This seems to be much simpler than in xf1, the following added to EXTRA.less will change the background colour, font style and font colour of the main text (i.e. the...
  20. ENXF NET

    Xenforo 2.0 Highlight and Separate Sticky Threads

    Simple css (extra.less) modifications to highlight/separate sticky threads Separate sticky and normal threads Insert code in template: extra.less /* Border between sticky/normal threads */ .structItemContainer-group--sticky { border-bottom: 6px solid; color...
Top