Quote:
Originally Posted by NTMID8
Anyone know how to get this working under v4.1.5? I made the change to postbit_display_complete as shown above. There is no postbit_display_start in v4 but that line exists in postbit_display_complete so I made that edit there as well. Tested out and regardless of whether my option is set to No or Yes, I can still see the Like system.
|
You can just edit the postbit_display_start and postbit_display_complete plugins... put the code that mentions the template hook inside this conditional:
PHP Code:
if ($vbulletin->userinfo['field29'] != "No")
{
//Original Code Here
}
again change "29" to whatever field number yours is.
As for your earlier question about what Paul did- it doesn't matter, the vb.org like system is completely custom and has nothing to do with the mod this article is based on- so nothing Paul did here is relevant.