It looks like you're new here. If you want to get involved, click one of these buttons!
'item_actions' => array('save','view','publish','delete','duplicate','replace','create','others'=>array('../products/referee/' => 'Referee'))
as when logged in as "admin", I get to see the button on my products item page. The button, takes you to a front-end page rendering of the product (laid out in a special way so the standard preview feature isn't applicable here).
Comments
I got it by:
Module:
$config['modules']['boards'] = [ 'table_headers' => [ 'id', 'title', 'active', 'date_added' ], 'display_field' => 'title', 'default_col' => 'title', 'sanitize_input' => ['template','php'], 'hidden' => true, 'item_actions' => ['save','view','publish','delete','duplicate','replace','create','others' => ['../products/referee' => 'Referee']], 'permission' => [ 'boards', 'create', 'edit', 'delete', 'replace', 'publish', '../products/referee' ] ];
Permission as written in the permissions module:
boards/../products/referee
I used a module I had called "Boards".