• I am having trouble setting permissions for who is able to edit the entries. for some reason some of the entries are editable by the public and some not. i need them all to be only editable by the administrator only. please could you help.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi,
    Do not try to finging logic in stickylist – its very simple plug.
    All entries are in 1 list. Every user after login – see 1 list (id=’1′), but not all entries. Each user see own entries (showto=’creator’). If U want to make more “filters” try to use plugin options (readmme.TXT).

    add_filter(‘filter_entries’,’hide_some_rows’ );
    function hide_some_rows($entries) {
    foreach ($entries as $entryKey => $entryValue) {
    if ($entryValue[“1”] == “some-text”) {
    unset($entries[$entryKey]);
    }
    }
    return $entries;
    }

    Again – this plugin shows entries to: (A) Only “creator”, (B) to all users.. (C) have option to show –> loggedin

    Regards

Viewing 1 replies (of 1 total)
  • The topic ‘edit access permissions’ is closed to new replies.