Hello, maybe somebody have for prestashop version 8.1.3 or 8.x some modules or script for restrict access for groups? or somebody know if some moudles from 1.7 version ps goes in 8.x?
Hello, I asked this question in the Core Developer section, but that was probably not the right place. I am looking for the best way to represent a catalog of products where the ability to view, search, and buy SKUs are restricted based on their user type. There will be two users types to conside...
Hello, I asked this question in the Core Developer section, but that was probably not the right place. I am looking for the best way to represent a catalog of products where the ability to view, search, and buy SKUs are restricted based on their user type. There will be two users types to conside...
thank you for your replny, but i tried to find something which including membership with cms page restrict for membership groups, but finally i make own tpl file where put conditional statement "if" and it's working for me fine
Code:
{if (int)Group::getCurrent()->id == 4}
<p>working fine</p>
{else}
<p>you need to be member</p>
{/if}
where 4 we write our group ID, maybe it help somebody