Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor wpsoul

    (@wpsoul)

    You can try to change plugin’s file inc/class-wpsm-table-maker.php

    Find

    $this->page_hook = add_menu_page( __('Table Maker', 'wpsm-tableplugin'), __('Table Maker', 'wpsm-tableplugin'), 'manage_options', $this->page_slug, array($this, 'print_page'), $this->base_url . "/img/icon.png" );

    Here, you need to change string “manage_options”

    Change it to one of user capability https://codex.www.ads-software.com/Roles_and_Capabilities

    For example, for authors, you can use edit_posts

    Note, that in this case other users can change tables (even if they are not made by this user)

    Thread Starter BigYin

    (@bigyin)

    Hi, That fixed it, thanks. Changed to “publish_posts” to restrict to author only. Duncan

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Author use Table Maker’ is closed to new replies.