I would like to share with you a solution which I found on http://forum.opencart-tr.com/thread-848-page-2.html
I seems that this wonderfull module has a small conflict issue, on the check out page, where the user should register, login or proceed as quest. The continue button does not function in this case.
Here the solution for it.
Open : catalog/view/theme/"your_theme"/template/account/login.tpl
find :
Code: Select all
<form action="<?php echo str_replace('&', '&', $action); ?>" method="post" enctype="multipart/form-data" id="account">
Code: Select all
<form action="<?php echo str_replace('&', '&', $action); ?>" method="post" enctype="multipart/form-data" id="account2">
Code: Select all
<div style="text-align: right;"><a onclick="$('#account').submit();" class="button"><span><?php echo $button_continue; ?></span></a></div>
Code: Select all
<div style="text-align: right;"><a onclick="$('#account2').submit();" class="button"><span><?php echo $button_continue; ?></span></a></div>

Tested on opencart 1.4.7.