PDA

View Full Version : vBulletin 4 Request - Require a post icon on new thread creation (or on every post)


chudvs
07-21-2019, 01:25 PM
Require a post icon on new thread creation (or on every post), desperately need this for vb 4.2.5

iA1
07-21-2019, 03:18 PM
Create plugin at hook location 'newpost_process' and add the following code in it:


// check for post icon
if ($post['iconid'] == 0)
{
eval(standard_error("Please select post icon."));
}

chudvs
07-22-2019, 01:41 PM
thanks you iA1, you own!