Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Chris Roberts

    (@columcille)

    I should soon be putting together version 2 of Glossy. I’ve made a note to include access options.

    In the meantime, if you are comfortable editing plugin files, look at plugins/glossy/glossy.admin.php. Two lines toward the top should be:

    add_menu_page(‘Manage Entries’, ‘Glossy’, ‘install_plugins’, ‘glossy-settings’, ‘gs_manageEntries’);

    add_submenu_page(‘glossy-settings’, ‘Add Entry’, ‘Add Entry’, ‘install_plugins’, ‘glossy-add-entry’, ‘gs_addEntry’);

    Replace install_plugins with a capability unique to editors – for instance, this should work:

    add_menu_page(‘Manage Entries’, ‘Glossy’, ‘edit_posts’, ‘glossy-settings’, ‘gs_manageEntries’);

    add_submenu_page(‘glossy-settings’, ‘Add Entry’, ‘Add Entry’, ‘edit_posts’, ‘glossy-add-entry’, ‘gs_addEntry’);

    Plugin Author Chris Roberts

    (@columcille)

    Posted Glossy 2.1 last night, it includes access control options.

    Thread Starter jue_mue

    (@jue_mue)

    Thanks, works fine…

    However, I have another problem now: Glossy does not seem to be WP Multisite compatible. New entries in a second instance (2nd site) are not saved.

    Any idea?

    Thanks a lot,

    J.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Grant access to Editor?’ is closed to new replies.