How to identify which product added by which user(not customers) in opencart? any table or data in database related to user and product?
Thanks in advance..
How to identify which product added by which user(not customers) in opencart? any table or data in database related to user and product?
Thanks in advance..
There is no such relation. But you can create a field in oc_products
table named as add_by_user_id
and can insert the id using session by $this->user->getId()
.