Quote Originally Posted by Bahnstoermer View Post
Apparently this happens frequently, perhaps the ReadMe should discuss this more clearly? Working on implementing this fix..
There is no "fix" as such needed from a module / coding perspective. The "fix" is to install the files to the proper location and determine if you are using a custom template or not so you know where to install them to. :)


Quote Originally Posted by Bahnstoermer View Post
Are you using a custom template or not? In one error, it references the "template_default" directory, and in the other, it references a "CUSTOM" directory.
The reason it references two different locations is because of how the Zen overrides work. Zen first looks to find out if a custom directory exists. If it does, then it uses the files from that directory to "generate" those pages referenced.

If a custom directory does not exist, then it goes back and uses the "default" directory files.

In this case, it is not the module's fault that is causing different locations to print. Those references are not part of the module itself, but rather, part of zen cart and php. It is normal with all sites.

The reason you get the two different locations being referenced is because the files were not installed to the correct locations in the first place. So, due to that problem, the error report you get on the screen will reference both the conflict of the custom directory you are trying to use (referenced in the "tpl_main_page.php" file) and the included file that SHOULD be present in the same custom location (but is not due to incorrect installation). So, it then looks for the include files under the "default" template directory, can't find them there, and reports that back as well.

Again, this is not module error message. It is a PHP message that you are getting which has its foundation on the Zen overrides system.