xenforo

  1. ENXF NET

    xF1 Add-on Twitch script to show if member is online/offline 1.0

    This simple script will allow you to know if member is online....and placed in the postbit area. install: upload contents of zip to root edit message_user_info Template find: <xen:if is="@messageShowTrophyPoints AND {$user.user_id} AND {$xenOptions.enableTrophies}"> <dl...
  2. ENXF NET

    xF1 Add-on Spam and Disposable email addresses 0.4

    Description: Xenforo doesn't easily allow you to add large numbers of email addresses to ban (such as vB) and thus must be added one by one. Using this add-on removes the need to add each email address one by one by simply importing a .SQL file into your database. Total domains blocked: 1398...
  3. ENXF NET

    xF1 Add-on Pixel Guide Template v1

    Preview Summary: Pixel guideline templates which I found are usefull for graphic resource forums as a visual guideline to others who are not savy in pixels/sizes. Below (quoted text) is an example of how they can be used as a reference guideline. Format: .Png Conditions of use: This pack may...
  4. ENXF NET

    XF 1 Tip Avatar Frames

    Add this in extra.css @media only screen and (min-width: 481px) { .messageUserBlock div.avatarHolder .avatar img { position: relative; <--z-index: -1;--> } .avatarHoldercustom { background-color: #FFFFFF; position: relative; z-index: 10; width: 135px; height...
  5. ENXF NET

    XF 1 Tip How to customize the list of fonts in the text editor

    To change the list of fonts in the editor, you need to edit the file located at "/js/xenforo/bb_code_edit.js". The file is minified, so we will need to unfold some text. The full version is available in the "full" folder; you can copy and use that file instead if you like, but for this tutorial...
  6. ENXF NET

    XF 1 Tip Configuring Rekt Homepage

    With both Rekt and the Widget Framework installed, navigate to Appearance -> Import Widgets, then upload the file rekt_homepage_widgets.xml included with Rekt, which installs the Rekt widgets. Then navigate to Applications -> Create New Node in your ACP. Select Page in the first prompt, then...
  7. ENXF NET

    XF 1 Tip Hide TaigaChat For People With less than 10 posts

    First find the template forum_list Look for this <xen:hook name="dark_taigachat_alt" /> change this <!-- If the user have more than 9 messages --> <xen:if is="{$visitor.message_count} >9"> <xen:hook name="dark_taigachat_alt" /> </xen:if> <!-- Else --> <xen:if...
  8. ENXF NET

    XF 1 Tip select all users that are in a secondary usergroup in MySQL

    XenForo stores secondary user groups in a varbinary list. You might not see this list in human-readable form depending on your version of phpMyAdmin or otherwise in the browse so it might look confusing. If you need to grab all users that are in a secondary usergroup, here is the query to enter...
  9. ENXF NET

    XF 1 Tip Approve all moderated profile posts (queries)

    Backup first. Here are the queries to soft delete all moderated profile posts: DELETE FROM xf_moderation_queue WHERE content_type = 'profile_post'; UPDATE xf_profile_post SET message_state = 'visible' WHERE message_state = 'moderated';
  10. ENXF NET

    XF 1 Tip Mass Replacement of Thread Title

    This tips requires SQL query execution. So for safety reason, you are advised to backup your database before doing this. To remove some words from thread titles, and the threads are within certain nodes, you can run this SQL query from phpmyadmin : Example : Replace "viagra" into "medicine"...
  11. 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...
  12. ENXF NET

    XF 1 Tip How to set secure file/folder permissions for Xenforo

    This guide is for folks who are wondering how "chmod" and "chown" should be applied to Xenforo. Perhaps, like me, you started messing around with those two commands trying to fix one problem, then realized you might have created a bigger problem and now you're trying to fix it. I just spent a...
  13. ENXF NET

    xF1 Add-on Add-on Install & Upgrade 1.4.3

    This add-on is not affiliated with XenForo Ltd. Introduction Add-on Install & Upgrade is an invaluable tool for Admins as it aims to make every aspect of add-on management as easy as possible. This includes installation by ZIP files, installation direct from the XenForo Community Resource...
  14. ENXF NET

    XF 1 Tip Change Reply Button Text

    First, login to your ACP. Navigate to Appearance > Phrases. Go to the search bar and tick the 'prefix match'. Find 'reply'. Phrase appears first as you need to click on and modify. Do not change the title of the phrase, it is still to reply. Go to the Phrase text and change the text from...
  15. ENXF NET

    XF 1 Tip Visual List of Ad Locations

    A series of images which show the locations of the default XenForo Ad Templates
  16. ENXF NET

    XF 1 Tip Remove XenForo Copyright/Mark *EASIEST WAY*

    Hello everyone! Today i will be guiding you on how to remove the copyright/mark thingy that's underneath ur forum. It's pretty easy to do and also this is the easiest way to do so. Enjoy :D Step 1: Navigate into Admin CP > (Your style) > Templates > Footer and click it. Step 2: Ctrl + F and...
  17. ENXF NET

    xF1 Add-on [Aayush] PayPal Donate 1.0.4

    Description: Advanced PayPal Donate system for XenForo. Features: Allow users to donate suggested or custom amounts, or both Ability to set a goal with title and description Ability to set a minumum donation amount Option to set permissions for donating and viewing Donation listing Donation...
  18. ENXF NET

    XF 1 Tip Glowing Usernames

    This is a simple thing that I didn't see anyone else post here, so I figured I'd add this in for those who may look for it. This just goes in AdminCP -> Users -> Usergroups -> *desired group* -> Username CSS color: #1abc9c; text-shadow: 0px 0px 7px #1abc9c;
  19. ENXF NET

    XF 1 Tip Custom Node Status Icons ( Read & Unread)

    Overview With the release of XenForo Release Candidate 1 (it will not work with prior versions of XF), nodes id are included in the templates, allowing us to easily change the Status Icons without any complicate template edits. I know many of you already know how to do this by many others are...
  20. ENXF NET

    XF 1 Tip Lightbox on lower resolution devices

    On low resolution deviced the lightbox is deactivated, this little core hack enable lightbox in low resolution devices like iPhone 4s. This is a core hack to xenforo.js file so you need to apply it again after every time you update xenForo core. How to do it: Search for: <500 if you're using...
Top