REQ: code

I've tested under a 3.6.7PL1 board which has nothing but my own add-ons installed and it works fine.

You've possibly got other addons or have modified your templates which is causing issues.

You can manually modify the SHOWTHREAD template.
search for:
Code:
$vbphrase[remove_redirects]</option>
replace with
Code:
$vbphrase[remove_redirects]</option>
<option value="incviews">$vbphrase[inc_views]</option><option value="decviews">$vbphrase[dec_views]</option>

then search for:
Code:
$vbphrase[remove_redirects]</label></div>
replace with:
Code:
$vbphrase[remove_redirects]</label></div>
<div><label for="ao_inc"><input type="radio" name="do" id="ao_inc" value="incviews" />$vbphrase[inc_views]</label></div>
<div><label for="ao_dinc"><input type="radio" name="do" id="ao_dinc" value="decviews" />$vbphrase[dec_views]</label></div>

Once you've made the above changes, disable the "Inc / Dec Thread Views: Display Option" plugin which is meant to do these changes for you.

Just to recap - semi manual instructions are: Install product, Make template mods above, disable "Inc / Dec Thread Views: Display Option" plugin

I think that should do it...
 
Back
Top