xenforo

  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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';
  6. 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"...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. ENXF NET

    XF 1 Tip Visual List of Ad Locations

    A series of images which show the locations of the default XenForo Ad Templates
  12. 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...
  13. 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...
  14. 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;
  15. 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...
  16. 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...
  17. ENXF NET

    XF 1 Tip Remove News Ticker from Navigation

    In addition to all other user group permissions for news tickers, you can also set which user groups can see navigation tab for news ticker: So, easily set it to NO, for any group that you don't want to let them see that link in navbar.
  18. ENXF NET

    XF 1 Tip Hide email adress from guests

    his tutorial will show you how to hide email adress from guests. Go on your ftp > library/XenForo/BbCode/Formatter/Base.php and search : $email = XenForo_Helper_String::censorString($email); and add below to hide to guests : $visitor = XenForo_Visitor::getInstance(); if...
  19. ENXF NET

    XF 1 Tip Force https (SSL) using .htaccess and mod_rewrite for XenForo

    As we known, Google has announced that going HTTPS — adding a SSL 2048-bit key certificate on your site — will give you a minor ranking boost. And now, Brivium will tell you how to force https using .htaccess and mod_rewrite for XenForo that we installed on our official website. Force https and...
  20. ENXF NET

    xF1 Add-on Xen Product Manager 1.2.12

    This add-on is not affiliated with XenForo Ltd. Xen Product Manager is a fully featured product/license manager add-on for XenForo which will allow you to sell products to your members. Payment for all products is made to the same PayPal account as configured for User Upgrades. Adding...
Top