content

  1. ENXF NET

    xF2 Add-on [BS] Scheduled posting 1.1.3

    .features: Scheduled posting Threads Posts Profile posts Easily creating your own handler for scheduled posting (for developers) Permissions Create scheduled publications View scheduled publications
  2. ENXF NET

    xF2 Add-on Jazzaaf Popular Content 1.0.0

    In xenForo 1, we used an addon ( WDB Popular Content ) to show the most popular content in our forum (i.e. most replied threads, most liked threads, etc.). Unfortunately, the addon developer did not update the resource to work with XF2. So, we developed this addon to replace the old one. It...
  3. ENXF NET

    WP Plugins Restrict Content Pro v3.0.9

    Restrict Content Pro v2.9.15 is a complete membership and premium content manager plugin for WordPress. With this plugin you can create an unlimited number of memberships levels, including free, trial and premium. Manage members and their subscriptions, track payments, offer discounts with a...
  4. ENXF NET

    xF2 Add-on AndyB New content limit 1.7

    Limits the number of new threads, posts and conversations allowed to be made in a day. This is useful to prevent a spammer from creating thousands of threads, posts and conversations on your forum in a short amount of time. (Example of Options page) Installation: Download...
  5. ENXF NET

    XF 1 Tip Replace editor icons with Font Awesome

    This is a simple edit to replace the icons in the default editor for XenForo with Font Awesome icons. Looks great on mobile, and allows you to EASILY change the colors Step 1.) You need to include Font Awesome unless your style already comes with it or you have the official XenForo Gallery...
  6. ENXF NET

    XF 1 Tip Identify people who have recently added tags using PHPMyAdmin

    You may want to be able to identify your most prolific taggers so that you can send them some appreciation or hold staff accountable. This is easy to do using PHPMyAdmin. Something similar can of course be done with other MySQL clients, but that's beyond the scope of this how-to (perhaps someone...
  7. ENXF NET

    XF 1 Tip Tutorial Understanding Conditional Statements

    Conditional Statements The following conditional statements will only work in templates which support the arguments and parameters. Statements can be expanded using AND, OR, xen:else and xen:elseif. Replacing == with != in the following examples will change the condition from true to false...
  8. ENXF NET

    XF 1 Tip Approve all moderated posts (queries)

    You can run these two queries to approve all moderated posts: DELETE FROM xf_moderation_queue WHERE content_type = 'post'; UPDATE xf_post SET message_state = 'visible' WHERE message_state = 'moderated'; And here are the queries to approve all moderated threads: DELETE FROM xf_moderation_queue...
  9. ENXF NET

    XF 1 Tip Soft delete all moderated posts (queries)

    You can run these queries to soft delete all moderated posts. You need to change the red pieces to attribute these deletions to a user_id and username, as well as give the reason. These things are recorded in the deletion log: INSERT INTO xf_deletion_log (content_type, content_id, delete_date...
  10. ENXF NET

    XF 1 Tip How to create a Page node

    This resource is not affiliated with XenForo Ltd. To create a new page go to ACP -> Applications -> Create New Page Select the various tabs and configure the fields. Enter a URL (e.g. myfirstpage) – this will be the URL of the page, for example: http://www.myforum.com/pages/myfirstpage/ Enter...
  11. ENXF NET

    XF 1 Tip Replace editor icons with Font Awesome

    This is a simple edit to replace the icons in the default editor for XenForo with Font Awesome icons. Looks great on mobile, and allows you to EASILY change the colors Step 1.) You need to include Font Awesome unless your style already comes with it or you have the official XenForo Gallery...
  12. ENXF NET

    General Discussion Guidelines

    The following are a few basic guidelines for using this particular area of our website: Keep it clean! Do not post or transmit sexually explicit images or other content that is deemed to be offensive (racial, sexist, etc). For mature content, please prefix the topic title with NSFW (Not Safe...
  13. ENXF NET

    Xenforo 2.0 Manage Content Map Bar (breadcrumb)

    Enter the following codes in the Extra.less template for your theme. Hide top bar .p-breadcrumbs:not(.p-breadcrumbs--bottom) { display: none; } Hide bottom bar .p-breadcrumbs.p-breadcrumbs--bottom { display: none; } What is a content map bar? - The specification of the location in the...
Top