Phew!jules_nz wrote:Yes I meant I changed it in the Admin panel
I haven't touched the code
Good stuff


Will make displaying the order number default in the next version.
I have now added it to the contributions page.
It was available from http://www.pixeldrift.net/opencart/ too.
I will make the small adjustments and release 1.1 when I get a spare minute as the changes are minor. If anyone has other small suggestions or changes let me know.
Thanks Daniel.
It was available from http://www.pixeldrift.net/opencart/ too.
I will make the small adjustments and release 1.1 when I get a spare minute as the changes are minor. If anyone has other small suggestions or changes let me know.
Thanks Daniel.
To clarify are you referring to the email sent from opencart or the email sent from paymate? I am away on work atm so can't take a look. Should get some time this weekend. If someone can recreate the problem let me know the steps to recreate and I'll take a look.
hi!
everything works for me but when paymate redirects me back to the site i get this error:
Error: Could not load template catalog/view/theme/defaultcommon/success.tpl!
it looks like there should be a / between the default and common [default/common/success.tpl]
can't find the bugger! does any one know where i can fix it?
cheers!
everything works for me but when paymate redirects me back to the site i get this error:
Error: Could not load template catalog/view/theme/defaultcommon/success.tpl!
it looks like there should be a / between the default and common [default/common/success.tpl]
can't find the bugger! does any one know where i can fix it?
cheers!
found it! in paymate.php file there's a missing /
this->template = $this->config->get('config_template') . 'common/success.tpl';
this->template = $this->config->get('config_template') . '/common/success.tpl';
NOTE: payMate increased their security so if you checkout with fake/test credit card details you'll get an error saying that openCart could not find the success.tpl!
this->template = $this->config->get('config_template') . 'common/success.tpl';
this->template = $this->config->get('config_template') . '/common/success.tpl';
NOTE: payMate increased their security so if you checkout with fake/test credit card details you'll get an error saying that openCart could not find the success.tpl!

The correct fix is to replace:
WITH:
The code is left over from 1.2.x and needs that full change to work with the latest. This has been fixed for 1.4.9
Code: Select all
this->template = $this->config->get('config_template') . 'common/success.tpl';
Code: Select all
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/common/success.tpl')) {
$this->template = $this->config->get('config_template') . '/template/common/success.tpl';
} else {
$this->template = 'default/template/common/success.tpl';
}
Are there actually two versions of this module???? Just wondering because when I clicked on SuperJuices' link that reverted to the AussiePost thread????
May be that some of the posts here are outdated in regard to version(s) of OC? Does Q's module cover all the issues/changes made in the previous posts?
Cheers
May be that some of the posts here are outdated in regard to version(s) of OC? Does Q's module cover all the issues/changes made in the previous posts?
Cheers
A stupid question is the one you -don't- ask.........(Anon)
)C1.5.0.1 (IN devel)
OC V1.4.9.5
OC V1.4.9.2
OC V1.4.7
OC V1.3.4
Who is online
Users browsing this forum: No registered users and 4 guests