tip

  1. Warfare

    XF 2 Tip Remove Quick Thread Per Forum

    [data-container-key="node-18"] .structItem[data-xf-init^="quick-thread"] { display: none; } Change the 18 for the ID of the node you want to hide it from. To hide it in multiple nodes you'd repeat the first line like this: [data-container-key="node-18"]...
  2. cocholmesthree

    XF 2 Tip Help : can't edit own Post after published.

    After i published a thread i can not edit it with the same user id. i tried even that ID as admin user group with set YES to all permissions. see attached photo for the error.
  3. ENXF NET

    XF 1 Tip How to secure your Xenforo forum

    This tutorial will show you how to secure your XF forum. Please don't forget to like if you think it's a good topic. EVERY TIPS is important for the security of your XenForo forum 1) Always get the last version of xenforo 2) Put a .htaccess file inside your library folder to protect it and put...
  4. ENXF NET

    XF 2 Tip Get user_id of visitor

    In XenForo 1, getting the user_id involved the getInstance and getUserId methods. $user_id =XenForo_Visitor::getInstance()->getUserId(); In XenForo 2, it's a matter of using visitor(). $visitor = \XF::visitor(); $user_id = $visitor['user_id']; Once the user_id is known then the $user...
Top