Cyb - Check If Already Posted v1.6 [ 3.8.X ]

vForums

New Member
Info:
Code:
User can check if the same/similar thread already exist when posting new one. Button is shown right after the thread title field in newthread form. When button is clicked then javascript code opens popup window with search results. Entered thread title is used as search query. Additionaly you can choose to search thread titles only or entire posts, to show results as threads or posts, to search current forum only or all. You can also exclude forums in ACP, set default pop-up window dimensions,.

Installation:
Code:
1. Import XML file (as product): AdminCP > Plugin System > Manage Products > [Add/Import Product]

2. OPTIONAL (for very customized styles - if button not shown):
	In newthread template find: <td><input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="85" tabindex="1" /></td>
	Below it add: $cybcheckifposted

To set options go to:
AdminCP > vBulletin Options > Cyb - Check If Already Posted

Tested on 3.8.0 beta 3
 
In newthread template find: <td><input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="85" tabindex="1" /></td>

i cannot find it

why?

the template newthread is at the new posting templates?
 
shadow1992 said:
In newthread template find: <td><input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="85" tabindex="1" /></td>

i cannot find it

For my style, is:

PHP:
<input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="$vboptions[titlemaxchars]" tabindex="1" />
			</td>

but it doesn't require adding variable in the newthread template.
 
Back
Top