Hi @mbritt Yes, there is no such setting in the admin section. But if you are interested, you can do it using API. You just need to put it(update board id and author login) in the component, save it and your post will be posted on a future date. <#assign subject = "Test Article" />
<#assign body = "Here is test article" />
<#assign post_time = "Dec 06, 2017 06:30:40 PM" />
<#assign post_time = post_time?datetime /> <#assign author = " michael_britt "/>
<#-- forum post-->
<#assign addBlog = restadmin("boards/id/products/messages/post?message.body=${body?url}&message.subject=${subject?url}&message.author=/users/login/${author}&message.post_date=${post_time?iso('UTC')}") />
... View more