arlevi Posted June 18 Share Posted June 18 Hi guys I'm new to PrestaShop and i'm looking for a way to save extra details for a product just for our internal employees w/o showing it to the customer, some extra details that connect the product to our external system. Is there a way I can do it natively ? or i need a module ? Thanks in advance... Link to comment Share on other sites More sharing options...
El Patron Posted June 19 Share Posted June 19 If you need to display extra product details (or any module content) only for your internal team and not for customers, you can use a third-party module, such as HTML Box Pro, there are many others. However, this module does not natively provide the option to limit content to back office admins, so it would need to be customized to check whether the logged-in user’s email belongs to an admin in the PrestaShop back office. If you require this type of restriction, contact the module developer or partner with a PrestaShop developer who can implement this customization for you. To make sure your module runs only for logged-in back office employees, add this code at the very top of your module file. This will immediately return and prevent the rest of the module from executing if the visitor is not an employee: $context = Context::getContext(); if (!$context->employee || !$context->employee->id) { // Not a back office employee, stop module execution return; } This ensures that your internal content or logic will only run for actual PrestaShop back office users, and will not be visible or executed for front office customers or visitors. The community may be able to provide other solutions. Good luck! 1 Link to comment Share on other sites More sharing options...
arlevi Posted June 20 Author Share Posted June 20 I will try it ! many thanks ! 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now