Threadmarks Pro

Threadmarks Pro 2.21.1

No permission to buy ($40.00)
XF1 Version

Q. How to enroll all forums to embed the threadmark index/list into the first page of 'reader mode'?
A. The following SQL can be run;
SQL:
update xf_forum set embed_threadmark_index = 1;

Q. How to enroll all forums to embed the threadmark index/list into the first page of 'reader mode' and 'normal thread' mode?
A. The following SQL can be run;
SQL:
update xf_forum set embed_threadmark_index = 2;

Q. How to make all forums require a threadmark on creation
A. The following SQL can be run;
SQL:
update xf_forum set require_threadmark = 1;

Q. How to make all forums require a threadmark index on creation
A. The following SQL can be run;
SQL:
update xf_forum set require_threadmark_index = 1;
Top Bottom