Quote:
Originally Posted by BirdOPrey5
This is great that you have updated this for 3.8.7 and are not leaving the 3.x series behind! Downloading now!
|
I still haven't upgrade to 4 yet, I think I'll stick with 3.8 for life
I just (quickly) tested this, and it also works on 3.7
@Viper - you could also write a plugin to disable that add-on if this style is used:
Title: Disable Products For Lightweight Style
Hook:style_fetch
PHP Code:
//replace x below with the styleid of lightweight style
if (STYLEID==x) {
// Disable "Latest Album Pictures - Forum Home"
$vbulletin->options['afm_onoff']=0;
}
Edit - in the above, if it doesn't work, try the following code (one of them should work)
PHP Code:
//replace x below with the styleid of lightweight style
if ($styleid==x) {
// Disable "Latest Album Pictures - Forum Home"
$vbulletin->options['afm_onoff']=0;
}