I used the below code to try to get the current user ID in prestashop.. am placing this code in another php file in my module directory and call it through by the module file.
$id = $this->context->customer->id_customer;
but its not working for me.. am using prestashop 1.5 ..
I certainly couldn't get it to work in my test either. However, you can try
$id = (int)$this->context->cookie->id_customer;
which works for me. I'm not at all sure that this is the best way to do it though.
First check if user is logged in than get the id by $this->context->customer->id_customer
if ($this->context->customer->isLogged()) {
echo $this->context->customer->id_customer;
}
else{
echo 'Not LoggedIn';
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With