I found the problem. I think this is a problem in the MOD (perhaps just a typo).
I found this line:
If (intFaqType = 2) and (strModeration<>"1") Then allowedFaq = False
and changed it to:
If (intFaqType = 16) and (strModeration<>"1") Then allowedFaq = False
Now the Smilies question appears and the Moderation question and answer only appear if moderation is turned on.
There was also another question asking what are moderators. I turned this off too if the admin has moderation turned off. Here is what I did:
Find this If (intFaqType = 4) and (strAllowForumCode<>"1") Then allowedFaq = False and add this after it: If (intFaqType = 5) and (strModeration<>"1") Then allowedFaq = False
It should look like this:
If (intFaqType = 4) and (strAllowForumCode<>"1") Then allowedFaq = False
If (intFaqType = 5) and (strModeration<>"1") Then allowedFaq = False
Then find Case 5 and and this after it: if (strModeration = "1") then
It will look like this:
Case 5
if (strModeration = "1") then
Then add an end if before Case 6. It should look like this:
end if
Case 6