Restricted Product Tab

Hello,

Is it possible to have a product tab for example like the description tab to show it only to the clients that i give permission, this clients will have the possibility to see exept of the product general infomation also the information in this products tab, meanwhile the vistitors will not be able to see this tab?

Is there any modification I can do about this?

Thanks in advance

if you create a user group, then assign the customers to that group and then implement this maybe

https://forum.cs-cart.com/topic/39435-free-addon-product-tabs-per-user-groups/

Also you can use HTML blocks with SMARTY support, add it to the product tab and use the following code wrapper

{if $auth.user_id && 123|in_array:$auth.usergroup_ids}
    .... your text here....
{/if}

then replace 123 with the required usergroup ID (can be found in the admin panel)

Also you can use HTML blocks with SMARTY support, add it to the product tab and use the following code wrapper

{if $auth.user_id && 123|in_array:$auth.usergroup_ids}
    .... your text here....
{/if}

then replace 123 with the required usergroup ID (can be found in the admin panel)

Where can i find the usergroup id? i can find the user id and user type but not the user id, can you help with this?

For example, hover over the Edit link in the browser

http://prntscr.com/kyz3ij

For example, hover over the Edit link in the browser

http://prntscr.com/kyz3ij

Thanks, i found but now i get this error:

Syntax error in template "798ea3bd8ffc40c894a92101d21b64153d9c46f3" on line 2 "{if $auth.user_id && 7 | in_array:$auth.usergroup_ids}" - Unexpected "|"

:(

Please remove extra space after 7