Been trying to modify this mod: http://forum.opencart.com/viewtopic.php?f=112&t=4952
So far I have come up with
Code: Select all
if (!$logged) {
$product_id = (int)$this->request->get['product_id'];
if ($product_id == 449) {
return 'TRADE ONLY';
}
}
Code: Select all
if (!$this->customer->isLogged()) {
$product_id = (int)$this->request->get['product_id'];
if ($product_id == 449) {
return 'TRADE ONLY';
}
}
"Call to a member function on a non-object"
Can anyone help please?