What if you put an if statement inside the template to determine the style used, then use the appropriate code, so you'd have both the code for the regular, and the legacy inside one template.
If styleid = 5 then use postbit code
else
use postbit_legacy code
This way you could also have more then 2 postbit styles as well, make your own, it would all be dependent on the ifs and elses...
Update:
I tested it, and it works. I made a second style, since I use the postbit_legacy, I copied the postbit code into the legacy template above it, and wrapped it with an if statement. Actually now that I think about it, you don't need the else with the postbit_legacy code since the if statement will always work as long as you supply the correct styleid.
|