Threadmarks Pro

xF2 Add-on Threadmarks Pro 2.5.11

No permission to download
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