attach

  1. ENXF NET

    XF 1 Tip Tutorial Implementing permissions across multiple user groups

    Having logged in to quite a few installations to resolve permission issues, it's clear that a lot of people haven't quite grasped the concept. So here are a few pointers: 1. All members should be in the Registered group as their Primary - that includes moderators, administrators and super...
  2. ENXF NET

    XF 1 Tip Tutorial How to fix "Please enter a message with no more than 10000 characters." 1.0

    If you come across this error message when creating your forum then it means your thread have more than 100000 characters and to fix it you need to raise the limit via ACP. 1- Go into AdminCP -> Options -> Messages : First option will be: Maximum Message Length 2- Raise the limit as your needs...
  3. ENXF NET

    XF 1 Tip Edit User Button in user profile 1.0

    Edit "member_view" template find <div class="secondaryContent pairsJustified[CODE] And replace it with [CODE]<xen:if is="{$visitor.is_admin}"> <dd><a href="admin.php?users/{$user.username}.{$user.user_id}/edit"><input type="submit" class="button primary"...
  4. ENXF NET

    XF 1 Tip Hide Posts From Guests

    This is a simple template modification which will hide the post contents from guests and show them a message instead. Which you can alter to fit your needs. At the message template replace all the code in there with the following code: <xen:require css="message.css" /> <xen:require...
  5. ENXF NET

    XF 1 Tip Tag Cloud Styling

    For those of you who like to inject a bit of colour, it is possible to individually style each tag class. So instead of this: You can have this: It's quite simple to do using the individual tag class names such as tagCloudTag1, tagCloudTag2, up to tagCloudTag7, which is the highest one...
  6. ENXF NET

    XF 1 Tip Apply CSS styling to sticky / pinned threads

    This resource is not affiliated with XenForo Ltd. This is a simple edit to change the css for sticky threads only. Add this to EXTRA.css: .discussionListItem.visible.sticky, .discussionListItem.visible.sticky .posterAvatar, .discussionListItem.visible.sticky .stats { background: @inlineMod...
  7. ENXF NET

    xF1 Add-on First Post 1.4

    Description: Requires new members to make their first post in the introduction forum. (Example of error message) (Example of options page) Features: First post must be made in the forum selected. Option to allow guest posts in one forum. All phrases start with firstpost_ for your...
Top