.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...
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...
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...
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...
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...
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...
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...
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)...
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...