Quote Originally Posted by su35 View Post
The error information. It looks like declare the class twice. Do I need change the code to include_once() or require_once() in some where?
Code:
PHP Fatal error:  Cannot redeclare class supertracker in H:\zencart15\includes\classes\supertracker.php on line 15
For anyone that gets this error, a workaround that ~seems~ to do the trick is to edit the file:

/includes/templates/YOUR_TEMPLATE/jscript/jscript_supertracker.php

and change

REQUIRE(DIR_WS_CLASSES . 'supertracker.php');

to

include_once(DIR_WS_CLASSES . 'supertracker.php');


This is just a bandage, but is working like a champ for me now.

Nice Mod by the way.