message

  1. ENXF NET

    xF2 Add-on [BS] High privacy 1.2.1g

    .features: Disabling IP logging in the entire forum for all users (action logging remains, only the IP field will be empty) Disabling IP logging by user in privacy settings Deleting conversation messages some time after sending Conversation by key (encrypted messages) Unfortunately...
  2. ENXF NET

    XF 2 Tip Show Adblock users a message to (please) disable Adblock. (Update)

    With this script you can show Adblock users a simple not annoying message to please disable Adblock. First you have to create a new (or edit a existing) advertisement. (/admin.php?advertising/) I chose "Container breadcrumb (top): Above". Add the following to the HTML: <script> function...
  3. ENXF NET

    XF 1 Tip Show message (notice) when creating thread in a specific forum

    Show message (notice) when creating thread in a specific forum This hows a notice at the "Create Thread" page in a specific forum. This can be useful to ask the users to re-read specific forum rules. Create a New Notice (Add title, message...) Go to Page Criteria Select the Node(s) you...
  4. ENXF NET

    XF 1 Tip Responsive AdSense

    One of the biggest concerns with 1.2 has been how to activate the responsive design while still using AdSense. Obviously as the various page widths are now totally dynamic, simply adding a Google ad slot in the normal manner won't work. Once the browser width reduces below the width of the...
  5. 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...
  6. 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...
  7. 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...
  8. ENXF NET

    XF 1 Tip Rebuild user post counts (query)

    This will recalculate and update the post counts for all users at once. This is a large query that may take a while to finish. UPDATE xf_user AS user SET message_count = ( SELECT COUNT(*) FROM xf_post AS post LEFT JOIN xf_thread AS thread ON (thread.thread_id = post.thread_id)...
  9. 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...
  10. ENXF NET

    XF 1 Tip Header message

    How to add something like this to header? Open ad_header template and add this: <style type="text/css"> .header_message { border: solid 1px #597D96; color: #94BEDC; float: right; font-size: 10pt; margin-top: 20px; padding: 5px; border-radius: 5px; margin-right: 5px; } <xen:if...
Top